/// <reference types="react" />
import { PaginationProps as MuiPaginationProps } from '@mui/material/Pagination';
type InternalPaginationProps = {
    'data-testid'?: string;
};
type PaginationProps = Pick<MuiPaginationProps, 'className' | 'count' | 'disabled' | 'onChange' | 'page'> & InternalPaginationProps;
export declare const Pagination: import("styled-components").StyledComponent<({ "data-testid": dataTestId, className, count, disabled, onChange, page, }: PaginationProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
export {};
