import { LimeWebComponentContext } from '../../core'; import { LimeType } from '../../limetype'; /** * Open a dialog for creating a new limeobject or editing a specific limeobject * * The create dialog is implemented as a command so a plugin can easily replace the original dialog with a custom one. * Check out the "Hello, Event!" tutorial for a detailed description on how to implement your own create dialog. * * This dialog also useful to edit a limeobject that already exists * * @id `limeobject.create-dialog` */ export declare class CreateLimeobjectDialogCommand { /** * The limetype of the object to create */ limetype: LimeType; /** * Default data to populate the form with */ limeobject?: any; /** * Specifies if routing to limeobject should be done after confirmation */ route?: boolean; title?: string; context?: LimeWebComponentContext; }