import * as React from 'react';
import { IOptionsPickerProps } from './IOptionsPickerProps';
import { IOptionsPickerState } from './IOptionsPickerState';
export default class OptionsPicker extends React.Component<IOptionsPickerProps, IOptionsPickerState> {
    private _menuButtonElement;
    constructor(props: IOptionsPickerProps);
    render(): JSX.Element;
    private _onToggleCalloutClick;
}
