import { type ElementType } from 'react'; import type { SelectProps } from '..'; type PaginatedOptionType = { value: string | number; label: string; }; export type PaginatedSelectProps = Omit & { anchor?: ElementType; options: PaginatedOptionType[]; withTitle?: boolean; endReached?: (index: number) => void; setFilter?: (value: string | undefined | number) => void; }; export declare const PaginatedSelect: ({ value, withTitle, filter, setFilter: _setFilter, error, disabled, options, anchor: Anchor, onChange, placeholder, renderOptions: _Options, renderItem, endReached, ...props }: PaginatedSelectProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=PaginatedSelect.d.ts.map