import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { ICardFooterElementProps } from './ICardFooterElementProps'; declare const CardFooterElement_base: (abstract new (...args: Array) => import("../../../../Controls/Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../../Controls/Behaviors/Themeable").IThemeableCtor; /** * CardFooter - A component that represents the footer section of a card. * * @description This component is used to display the footer content of a card, typically containing action buttons or additional information relevant to the card's main content. * * @name CardFooter * @element mosaik-card-footer * @category UI Components * * @slot - The default slot for placing content within the card footer. * * @cssprop {String} --card-footer-padding-top - The padding-top property for the card footer. * @cssprop {String} --card-footer-padding-right - The padding-right property for the card footer. * @cssprop {String} --card-footer-padding-bottom - The padding-bottom property for the card footer. * @cssprop {String} --card-footer-padding-left - The padding-left property for the card footer. * @cssprop {String} --card-footer-gap - The gap property between elements in the card footer. * * @example * ```html * * * * * ``` * * @public */ export declare class CardFooterElement extends CardFooterElement_base implements ICardFooterElementProps, 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 CardFooterElement { type Props = ICardFooterElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-card-footer': CardFooterElement; } } export {}; //# sourceMappingURL=CardFooterElement.d.ts.map