import React from 'react'; import type { Overwrite } from '@epam/uui-core'; import { PaginatorProps as UuiPaginatorProps } from '@epam/uui-components'; export interface PaginatorModsOverride { } interface PaginatorMods { /** * Defines component size * @default '30' * */ size?: '24' | '30'; } export interface PaginatorProps extends UuiPaginatorProps, Overwrite { } export declare function Paginator(props: PaginatorProps): React.JSX.Element; export {}; //# sourceMappingURL=Paginator.d.ts.map