import { MixedContentContext } from '../../editor/widget-framework/mixed-content-context'; import { FormSubmitAction } from './interfaces/form-submit-action'; import { OffsetStyle } from '../styling/offset-style'; export declare class FormEntity { SelectedItems: MixedContentContext | null; FormSubmitAction: FormSubmitAction; SuccessMessage: string | null; RedirectPage: MixedContentContext | null; Margins: OffsetStyle | null; SfWidgetLabel: string; CssClass?: string; Attributes?: { [key: string]: Array<{ Key: string; Value: string; }>; }; }