import { DistributiveOmit } from "../utils/modern-polymorphic.js"; import { CardAction, CardActionProps as ActionProps, CardDescriptionProps as DescriptionProps, CardHeadingProps as HeadingProps, CardIcon, CardIconProps as IconProps, CardImage, CardImageProps as ImageProps, CardMetadataProps as MetadataProps, CardProps } from "./Card.js"; //#region src/Card/index.d.ts declare const Card: ((props: DistributiveOmit & { className?: string; padding?: "none" | "condensed" | "normal"; borderRadius?: "medium" | "large"; layout?: "default" | "compact"; children: React.ReactNode; }, "as"> & { as?: As | undefined; } & import("react").RefAttributes) => React.ReactNode) & { Icon: typeof CardIcon; Image: typeof CardImage; Heading: import("react").ForwardRefExoticComponent, HTMLHeadingElement>, "ref"> & { as?: "h2" | "h3" | "h4" | "h5" | "h6"; children: React.ReactNode; } & import("react").RefAttributes>; Description: import("react").ForwardRefExoticComponent, HTMLParagraphElement>, "ref"> & { children: React.ReactNode; } & import("react").RefAttributes>; Action: typeof CardAction; Metadata: import("react").ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { children: React.ReactNode; } & import("react").RefAttributes>; }; //#endregion export { Card, type ActionProps as CardActionProps, type DescriptionProps as CardDescriptionProps, type HeadingProps as CardHeadingProps, type IconProps as CardIconProps, type ImageProps as CardImageProps, type MetadataProps as CardMetadataProps, type CardProps };