import { EIconName, ISelectMultiOption, ISelectOption, ISelectSingleOptions } from '../../types'; import { HostAttributes } from '../../stencil-public-runtime'; export declare const getDropdownDisplayIcon: (selectedOption?: string, flattenOptions?: Record) => EIconName | undefined; export declare const getDropdownCustomCss: (selectedOption?: string, flattenOptions?: Record) => HostAttributes["style"] | undefined; export declare const buildSingleSelectOptions: (options?: ISelectSingleOptions) => Record;