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