//#region src/Paginator/Paginator.constants.d.ts declare const NAVIGATION_BUTTON_BASE_CLASSES: string[]; declare const NAVIGATION_BUTTON_CLASS_BY_SIZE: { readonly small: 'tw:min-w-6 tw:min-h-6'; readonly normal: 'tw:min-w-8 tw:min-h-[34px]'; }; declare const DISABLED_NAVIGATION_BUTTON_CLASSES: string[]; declare const ACTIVE_NAVIGATION_BUTTON_CLASSES: string[]; declare const BREAK_NAVIGATION_ITEM_BASE_CLASSES: string[]; declare const SELECT_WIDTH_CLASS_BY_SIZE: { readonly small: 'tw:w-[55px]'; readonly normal: 'tw:w-[65px]'; }; declare const CONTROLS_SPACING_CLASS_BY_SIZE: { readonly small: 'tw:gap-1'; readonly normal: 'tw:gap-1.5'; }; declare const NAV_BUTTON_PADDING_CLASS_BY_SIZE: { readonly small: 'tw:px-[6px] tw:py-px'; readonly normal: 'tw:px-[15px] tw:py-[6px]'; }; declare const GO_TO_PAGE_WRAPPER_CLASS_BY_SIZE: { readonly small: 'tw:ml-[5px]'; readonly normal: 'tw:my-1.5'; }; declare const ITEM_COUNT_WRAPPER_CLASS_BY_SIZE: { readonly small: ''; readonly normal: 'tw:my-1.5'; }; declare const ITEM_COUNT_LABEL_CLASS_BY_SIZE: { readonly small: ''; readonly normal: 'tw:ml-[10px]'; }; //#endregion export { ACTIVE_NAVIGATION_BUTTON_CLASSES, BREAK_NAVIGATION_ITEM_BASE_CLASSES, CONTROLS_SPACING_CLASS_BY_SIZE, DISABLED_NAVIGATION_BUTTON_CLASSES, GO_TO_PAGE_WRAPPER_CLASS_BY_SIZE, ITEM_COUNT_LABEL_CLASS_BY_SIZE, ITEM_COUNT_WRAPPER_CLASS_BY_SIZE, NAVIGATION_BUTTON_BASE_CLASSES, NAVIGATION_BUTTON_CLASS_BY_SIZE, NAV_BUTTON_PADDING_CLASS_BY_SIZE, SELECT_WIDTH_CLASS_BY_SIZE };