import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { ISheetContentElementProps } from './ISheetContentElementProps'; declare const SheetContentElement_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; /** * SheetContent - The main content area inside a bottom sheet. * * @description * Provides the scrollable body region of a sheet panel. * Text must be set via JavaScript (the `text` property is not an HTML attribute). * Place this element in the `content` slot of `mosaik-sheet`. * * @name SheetContent * @element mosaik-sheet-content * @category Overlays * * @slot - Default slot for content children. * * @example * Sheet content with slotted children: * ```html * *

Sheet body content here.

*
* ``` * * @public */ export declare class SheetContentElement extends SheetContentElement_base implements ISheetContentElementProps, 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 SheetContentElement { type Props = ISheetContentElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-sheet-content': SheetContentElement; } } export {}; //# sourceMappingURL=SheetContentElement.d.ts.map