export interface IOption { value: unknown; label: string; } declare type InputOption = string | number | boolean | Record; export declare type OptionsProp = InputOption[] | Record; export declare function normalizeOptions(props: { options: OptionsProp; valueKey: string; labelKey: string; }): IOption[]; export {};