import { CSSProperties, ReactNode, SyntheticEvent, MouseEvent } from 'react'; type TablePaginationProps = { rowsPerPageOptions?: number[]; total?: number; rowsPerPage?: number; page?: number; onPageChange?: (a: SyntheticEvent, page: number) => unknown; onRowsPerPageChange?: (__event: MouseEvent, newRowsPerPage: number) => unknown; style?: CSSProperties; loading?: boolean; expandDirection?: 'top' | 'bottom'; }; export type DropdownItemProps = { id?: number | string; selected?: boolean; name: string; value: number; children?: ReactNode; onClick?: (a: SyntheticEvent) => unknown; }; export type DropdownProps = { expandDirection?: 'top' | 'bottom'; open?: boolean; disabled?: boolean; children?: ReactNode; }; export default TablePaginationProps; //# sourceMappingURL=type.d.ts.map