export type GetLabel = (option: Option) => string; export type GetValue = (option: Option) => Value; export type GetGroupValue = (option: Option) => unknown; export type GetGroupLabel = (option: Option) => string; export type GetDisabled = (option: Option) => boolean; export type DefaultOption = { label: string; value: Value; }; export declare function getDefaultLabel(o: Option): string; export declare function getDefaultValue(o: Option): Value;