import { HTMLAttributes, ReactElement } from 'react';
import { default as styles } from './CompactPagination.module.css';
import { CompactPaginationItemProps } from './components/CompactPaginationItem/CompactPaginationItem';
export { styles as CompactPaginationClasses };
export interface CompactPaginationProps extends Omit, 'onChange'> {
/** Sets the color theme of the pagination. */
mode?: 'default' | 'ambient' | 'white';
/** Contains pagination items. */
children?: ReactElement[];
}
/**
* Displays a compact set of pagination controls. This component allows users to navigate
* between pages of content. It supports several themes for customization and can fit within various UI designs.
*/
export declare const CompactPagination: {
({ mode, children, className, ...restProps }: CompactPaginationProps): JSX.Element;
Item: any;
};