import * as React from 'react';
import { IOptionsPickerMenuProps } from './IOptionsPickerMenuProps';
import { IOptionsPickerMenuState } from './IOptionsPickerMenuState';
export default class OptionsPickerMenu extends React.Component<IOptionsPickerMenuProps, IOptionsPickerMenuState> {
    constructor(props: IOptionsPickerMenuProps);
    componentDidUpdate(prevProps: IOptionsPickerMenuProps): void;
    render(): JSX.Element;
    private _onStatusSelect;
    private _setActiveOption;
    private _toggleEdit;
}
