import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IDialogContentElementProps } from './IDialogContentElementProps'; declare const DialogContentElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/TextFormattable").ITextFormattableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * DialogContent - The main content area within a dialog. * * @description * Wraps the scrollable body content of a dialog. * Place this element in the `content` slot of `mosaik-dialog`. * Text content must be provided via slotted children since `text` is not an HTML attribute. * * @name DialogContent * @element mosaik-dialog-content * @category Overlays * * @slot - Default slot for content children. * * @example * Dialog content with text: * ```html * *

Are you sure you want to delete this item?

*
* ``` * * @public */ export declare class DialogContentElement extends DialogContentElement_base implements IDialogContentElementProps, ISlottable { private _text; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public */ get text(): string; set text(value: string); } /** * @public */ export declare namespace DialogContentElement { type Props = IDialogContentElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-dialog-content': DialogContentElement; } } export {}; //# sourceMappingURL=DialogContentElement.d.ts.map