/// <reference types="react" />
import * as React from 'react';
import { IComboBoxOption } from 'office-ui-fabric-react/lib/ComboBox';
import './ComboBox.Basic.Example.scss';
export declare class ComboBoxBasicExample extends React.Component<{}, {
    options: IComboBoxOption[];
    selectedOptionKey?: string | number;
    value?: string;
    optionsMulti: IComboBoxOption[];
    selectedOptionKeys?: string[];
    valueMulti?: string;
}> {
    private _testOptions;
    private _fontMapping;
    private scaleOptions;
    private _basicCombobox;
    constructor(props: {});
    render(): JSX.Element;
    private _onRenderFontOption;
    private _getOptions;
    private _getOptionsMulti;
    private _onChanged;
    private _onChangedMulti;
    private _updateSelectedOptionKeys;
    private _basicComboBoxOnClick;
    private _basicComboBoxComponentRef;
}
