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. * * @csspart contentText - The contentText part. * @csspart scroll - The scroll part. * * @cssprop {String} --dialog-content-font-family - The content font family CSS custom property. * @cssprop {String} --dialog-content-font-letter-spacing - The content font letter spacing CSS custom property. * @cssprop {String} --dialog-content-font-line-height - The content font line height CSS custom property. * @cssprop {String} --dialog-content-font-size - The content font size CSS custom property. * @cssprop {String} --dialog-content-font-text-decoration - The content font text decoration CSS custom property. * @cssprop {String} --dialog-content-font-text-transform - The content font text transform CSS custom property. * @cssprop {String} --dialog-content-font-weight - The content font weight CSS custom property. * @cssprop {String} --dialog-content-gap - The content gap CSS custom property. * @cssprop {String} --dialog-content-padding-bottom - The content padding bottom CSS custom property. * @cssprop {String} --dialog-content-padding-left - The content padding left CSS custom property. * @cssprop {String} --dialog-content-padding-right - The content padding right CSS custom property. * @cssprop {String} --dialog-content-padding-top - The content padding top CSS custom property. * @cssprop {String} --dialog-content-shadow - The content shadow CSS custom property. * @cssprop {String} --dialog-content-shadow-blur - The content shadow blur CSS custom property. * @cssprop {String} --dialog-content-shadow-color - The content shadow color CSS custom property. * @cssprop {String} --dialog-content-shadow-offset-x - The content shadow offset x CSS custom property. * @cssprop {String} --dialog-content-shadow-offset-y - The content shadow offset y CSS custom property. * @cssprop {String} --dialog-content-shadow-spread - The content shadow spread CSS custom property. * @cssprop {String} --dialog-content-transition-duration - The content transition duration CSS custom property. * @cssprop {String} --dialog-content-transition-mode - The content transition mode CSS custom property. * @cssprop {String} --dialog-content-transition-property - The content transition property CSS custom property. * @cssprop {String} --dialog-content-translate - The content translate CSS custom property. * * @dependency mosaik-scroll - The Scroll element. * @dependency mosaik-text - The Text element. * * @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