import React from 'react'; import { Selectors, DefaultProps } from '@asuikit/styles'; import useStyles from './PaginationControl.styles'; export type PaginationControlStylesNames = Selectors; export interface PaginationControlProps extends DefaultProps, React.ComponentPropsWithoutRef<'button'> { /** Determines whether control should have active styles */ active?: boolean; /** Determines whether control should have padding, true by default */ withPadding?: boolean; } export declare const PaginationControl: React.ForwardRefExoticComponent>; //# sourceMappingURL=PaginationControl.d.ts.map