interface Pagination { rowsPerPage: number; } interface ActiveOptions { value: string; label: string; } interface ListOrder { id: string; code: string; name: string; status: boolean; } interface Tabs { value: string; label: string; } export type { Pagination, ActiveOptions, ListOrder, Tabs };