import { IOptionsPickerOption } from "./IOptionsPickerMenuProps";
export interface IOptionsPickerMenuState {
    edit: boolean;
    activeOption?: IOptionsPickerOption;
}
