import type { ITheme } from '../../Styling'; import type { IComboBoxOptionStyles, IComboBoxStyles } from './ComboBox.types'; import type { IButtonStyles } from '../../Button'; export declare const getOptionStyles: (theme: ITheme, customStylesForAllOptions?: Partial, customOptionStylesForCurrentOption?: Partial, isPending?: boolean, isHidden?: boolean, isSelected?: boolean) => Partial; export declare const getCaretDownButtonStyles: (theme: ITheme, customStyles?: Partial) => IButtonStyles; export declare const getStyles: (theme: ITheme, customStyles?: Partial, comboBoxOptionWidth?: string) => Partial;