import { AllFilterOptionMap, DropdownOption } from '../../../Types'; export declare function alphabetizeDropdownOptions(dropdownOptions: DropdownOption[]): DropdownOption[]; export declare const ALL_KEY = "all"; export declare const ALL_ACCOUNTS_VALUE = "All Accounts"; export declare const ALL_ACCOUNTS_DROPDOWN_OPTION: DropdownOption; export declare const ALL_SERVICES_VALUE = "All Services"; export declare const ALL_SERVICES_DROPDOWN_OPTION: DropdownOption; export declare const ALL_CLOUD_PROVIDERS_VALUE = "All Providers"; export declare const ALL_CLOUD_PROVIDERS_DROPDOWN_OPTION: DropdownOption; export declare const CLOUD_PROVIDER_OPTIONS: DropdownOption[]; export declare const ALL_RECOMMENDATION_TYPES_VALUE = "All Recommendation Types"; export declare const ALL_RECOMMENDATION_TYPES_DROPDOWN_OPTION: DropdownOption; export declare const ALL_REGIONS_VALUE = "All Regions"; export declare const ALL_REGIONS_DROPDOWN_OPTION: DropdownOption; export declare const ALL_DROPDOWN_FILTER_OPTIONS: AllFilterOptionMap; export declare const buildAndOrderDropdownOptions: (dropdownOptions: DropdownOption[] | undefined, emptyResponse: DropdownOption[]) => DropdownOption[];