import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IDrawerFooterElementProps } from './IDrawerFooterElementProps'; declare const DrawerFooterElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * DrawerFooter - The footer section within a drawer. * * @description * Provides a footer area at the bottom of a drawer panel, typically for * supplementary information or secondary actions. * * @name DrawerFooter * @element mosaik-drawer-footer * @category Overlays * * @slot - The default content slot. * * @cssprop {String} --drawer-footer-font-family - The footer font family CSS custom property. * @cssprop {String} --drawer-footer-font-letter-spacing - The footer font letter spacing CSS custom property. * @cssprop {String} --drawer-footer-font-line-height - The footer font line height CSS custom property. * @cssprop {String} --drawer-footer-font-size - The footer font size CSS custom property. * @cssprop {String} --drawer-footer-font-text-decoration - The footer font text decoration CSS custom property. * @cssprop {String} --drawer-footer-font-text-transform - The footer font text transform CSS custom property. * @cssprop {String} --drawer-footer-font-weight - The footer font weight CSS custom property. * @cssprop {String} --drawer-footer-gap - The footer gap CSS custom property. * @cssprop {String} --drawer-footer-padding-bottom - The footer padding bottom CSS custom property. * @cssprop {String} --drawer-footer-padding-left - The footer padding left CSS custom property. * @cssprop {String} --drawer-footer-padding-right - The footer padding right CSS custom property. * @cssprop {String} --drawer-footer-padding-top - The footer padding top CSS custom property. * @cssprop {String} --drawer-footer-shadow - The footer shadow CSS custom property. * @cssprop {String} --drawer-footer-shadow-blur - The footer shadow blur CSS custom property. * @cssprop {String} --drawer-footer-shadow-color - The footer shadow color CSS custom property. * @cssprop {String} --drawer-footer-shadow-offset-x - The footer shadow offset x CSS custom property. * @cssprop {String} --drawer-footer-shadow-offset-y - The footer shadow offset y CSS custom property. * @cssprop {String} --drawer-footer-shadow-spread - The footer shadow spread CSS custom property. * @cssprop {String} --drawer-footer-transition-duration - The footer transition duration CSS custom property. * @cssprop {String} --drawer-footer-transition-mode - The footer transition mode CSS custom property. * @cssprop {String} --drawer-footer-transition-property - The footer transition property CSS custom property. * @cssprop {String} --drawer-footer-translate - The footer translate CSS custom property. * * @example * Drawer footer with version info: * ```html * * v1.0.0 * * ``` * * @public */ export declare class DrawerFooterElement extends DrawerFooterElement_base implements IDrawerFooterElementProps, ISlottable { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; } /** * @public */ export declare namespace DrawerFooterElement { type Props = IDrawerFooterElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-drawer-footer': DrawerFooterElement; } } export {}; //# sourceMappingURL=DrawerFooterElement.d.ts.map