UNPKG

@pk-design/react-ui-kit

Version:
21 lines (20 loc) 539 B
/// <reference types="react" /> interface PaginationProps { currentPage: number; limit: number; options: Array<number>; } interface FooterProps { paginationOptions: PaginationProps; setPaginationLimit: Function; refreshTable: Function; paginate: boolean; height: number | string; itemsCount: number; gotoNextPage: Function; gotoPreviousPage: Function; id: string; hideFooterText: boolean; } export default function Footer(props: FooterProps): JSX.Element; export {};