/** * The properties of the SearchInput Stepper. * @public */ export type SearchInputStepperProps = { /** The zero-based index of the current match. */ current: number; /** Called when the current match index should change. */ onCurrentChange: (value: number) => void; /** The total number of matches. */ total: number; }; export declare const Stepper: ({ current, onCurrentChange, total, }: SearchInputStepperProps) => import("react/jsx-runtime").JSX.Element;