type OptionStub = { id: number | string; label: string; group?: boolean; }; export declare const options: OptionStub[]; export declare const optionsWithGroups: { label: string; options: { id: number; label: string; }[]; }[]; export declare const countryOptions: { label: string; options: { code: string; label: string; }[]; }[]; export {};