import { ReactNode } from "react"; export type UseOptionsProps = { field: { toString(): string; }; options: readonly Option[]; getLabel: (option: Option) => ReactNode; }; export declare function useOptions({ field, getLabel, options, }: UseOptionsProps): { renderOptions: { id: string; value: number; label: ReactNode; }[]; };