import { CustomElement } from '../../Abstracts/CustomElement'; import { IDrawerContentElementProps } from './IDrawerContentElementProps'; declare const DrawerContentElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * DrawerContent - The main content area inside a drawer. * * @description * Provides the scrollable body region of a drawer panel. * Place this element inside `mosaik-drawer`. * * @name DrawerContent * @element mosaik-drawer-content * @category Overlays * * @slot - The default content element. * * @example * Drawer content with list items: * ```html * * * * ``` * * @public */ export declare class DrawerContentElement extends DrawerContentElement_base implements IDrawerContentElementProps { private _opened; /** * @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 `opened` property. * * @public * @attr */ get opened(): boolean; private set opened(value); /** * @protected * @override */ protected onApplyTemplate(): void; /** * @protected * @virtual */ protected onOpenedPropertyChanged(_prev?: boolean, next?: boolean): void; } /** * @public */ export declare namespace DrawerContentElement { type Props = IDrawerContentElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-drawer-content': DrawerContentElement; } } export {}; //# sourceMappingURL=DrawerContentElement.d.ts.map