import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PaginationQuickJumperProps extends ComposableProps<'div'> { /** Label text */ label?: string; /** Button text */ buttonText?: string; /** Placeholder for input */ placeholder?: string; } /** * PaginationQuickJumper - Input to jump to a specific page * * Allows users to quickly navigate to a specific page number. * * @public * * @example * ```tsx * * * * * * * * * ``` * * @remarks * - Supports `asChild` for custom wrapper elements * - Validates input against total pages * - Supports Enter key for quick jump */ export declare const PaginationQuickJumper: React.ForwardRefExoticComponent>; //# sourceMappingURL=PaginationQuickJumper.d.ts.map