import { IComboBoxStyles, IComboBoxOptionStyles } from './ComboBox.Props';
export interface IComboBoxClassNames {
    container: string;
    label: string;
    root: string;
    input: string;
    errorMessage: string;
    callout: string;
    optionsContainer: string;
    header: string;
    divider: string;
}
export interface IComboBoxOptionClassNames {
    optionText: string;
}
export declare const getClassNames: (styles: IComboBoxStyles, className: string, isOpen: boolean, disabled: boolean, required: boolean, focused: boolean, allowFreeForm: boolean, hasErrorMessage: boolean) => IComboBoxClassNames;
export declare const getComboBoxOptionClassNames: (styles: IComboBoxOptionStyles, optionIsSelected: boolean, disabled: boolean) => IComboBoxOptionClassNames;
