import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const CardFooter = "ax-card-footer"; type CardFooterProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [CardFooter]: CardFooterProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof CardFooterProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [CardFooter]: CardFooterProps & Omit<(ComponentPropsWithoutRef<"div">), keyof CardFooterProps>; } } } export { CardFooter }; export type { CardFooterProps };