export type IdsDropdownOption = { id?: string; label: string; value: string; icon?: string; hex?: string; color?: string; tooltip?: string; groupLabel?: boolean; description?: boolean; originalLabel?: string; isCheckbox?: boolean; selected?: boolean; index?: number; [key: string]: any; }; export type IdsDropdownOptions = Array; export type IdsDropdownColumn = { id: string; name?: string; width?: string; minWidth?: string; maxWidth?: string; }; export declare const IdsDropdownCommonAttributes: string[]; export declare const IdsDropdownColorVariants: string[];