import { DescriptorForm } from './descriptor-form'; /** * Class that represents a form embedded in a modal component */ export declare class DescriptorModal { /** * The modal title */ title: string; /** * The form to be embedded in the content section of the modal */ formDescriptor: DescriptorForm; constructor( /** * The modal title */ title: string, /** * The form to be embedded in the content section of the modal */ formDescriptor: DescriptorForm); }