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