import { PanelType } from "office-ui-fabric-react"; import { Visibility } from "../../../stores/ui/Visibility"; import { FabreactorPanelHeader } from "../../../utils"; import { IFabreactorListProps } from "../../List"; export interface IFabreactorListPanelProps { getList: () => Promise; visibility: Visibility; onDismiss?: any; header?: FabreactorPanelHeader; type?: PanelType; title?: string; fullWidth?: boolean; }