interface Pagination {
page: number;
rowsPerPage: number;
}
interface ItemsMenu {
label: string;
icon: string;
color: string;
type: string;
export type { Pagination, ItemsMenu };