import React from 'react'; import { ITag, ButtonType } from 'office-ui-fabric-react'; import { IFabreactorSelectionPanelProps } from './ISelectionPanelProps'; import './SelectionPanel.css'; export declare class FabreactorSelectionPanel extends React.Component { options?: any[] | null; selected: string[]; constructor(props: IFabreactorSelectionPanelProps); private init; private open; private close; onDismiss: () => void; private getOptions; private setOptions; onFilterChanged: (key: string, isChecked: boolean) => void; onFilterSelected: (items: ITag[] | undefined) => void; readonly currentOptions: { key: any; title: any; checked: boolean; }[] | null; readonly footerButtons: { text: string; key: string; onClick: () => Promise; type: ButtonType; }[]; readonly isOpen: boolean; readonly isLoaded: boolean; render(): JSX.Element; }