/// <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;
}> {
    private _testOptions;
    private _fontMapping;
    private scaleOptions;
    private _basicCombobox;
    constructor(props: {});
    render(): JSX.Element;
    private _onRenderFontOption(item);
    private _getOptions(currentOptions);
    private _onChanged(option, index, value);
    private _basicComboBoxOnClick();
    private _basicComboBoxComponentRef(component);
}
