import type { UmbEntityModel } from '../../../core/entity/index.js'; import { UmbModalToken } from '../../../core/modal/index.js'; /** Data passed to the element create options modal. */ export interface UmbElementCreateOptionsModalData { parent: UmbEntityModel; } /** Value returned by the element create options modal. */ export interface UmbElementCreateOptionsModalValue { } /** Modal token for the element create options dialog, which presents allowed element types and create option actions. */ export declare const UMB_ELEMENT_CREATE_OPTIONS_MODAL: UmbModalToken;