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. * @slot prefix - The prefix slot. * @slot suffix - The suffix slot. * * @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