import React from 'react'; import { ButtonProps } from '../button'; import { PaginationVariantProps } from './pagination.styles'; export interface PaginationProps extends PaginationVariantProps, React.HTMLAttributes { count?: number; boundaryCount?: number; siblingCount?: number; page?: number; onPageChange?: (page: number) => void; defaultPage?: number; classNames?: Partial<{ base: string; item: string; }>; getItemA11yLabel?: (page: number) => string; showFirstButton?: boolean; showLastButton?: boolean; showPreviousButton?: boolean; showNextButton?: boolean; firstButtonIcon?: boolean; lastButtonIcon?: boolean; previousButtonIcon?: boolean; nextButtonIcon?: boolean; color: ButtonProps['color']; size: ButtonProps['size']; disabled?: boolean; firstPageA11yLabel?: string; lastPageA11yLabel?: string; nextPageA11yLabel?: string; previousPageA11yLabel?: string; } export declare const Pagination: React.ForwardRefExoticComponent>; //# sourceMappingURL=pagination.d.ts.map