interface Pagination {
rowsPerPage: number;
}
interface DataOption {
id: string | number;
name: string;
export type { Pagination, DataOption };