/// export interface RegularControlsProps { count: number; page: number; onPageChange: (page: number) => void; boundaryCount?: number; siblingCount?: number; } export declare function RegularControls({ page, count, onPageChange, siblingCount, boundaryCount, }: RegularControlsProps): JSX.Element;