import { PanelType } from "office-ui-fabric-react"; import { Visibility } from "../../../stores/ui/Visibility"; import { FabreactorPanelHeader, FabreactorFieldGroup } from "../../../utils"; export interface IFabreactorEditFormPanelProps { visibility: Visibility; group: FabreactorFieldGroup; getItem: () => Promise; onSave: (item: any) => void; onDismiss?: any; getSuggestions?: any; fullWidth?: boolean; header?: FabreactorPanelHeader; language?: string | null; title?: string | null; size?: PanelType; }