import { type ReactElement } from "react"; export * from "./title"; export * from "./content"; export * from "./actions"; export interface CardProps { className?: { root?: string; }; children: ReactElement | ReactElement[]; } export declare const Card: ({ className, children, ...rest }: CardProps) => ReactElement; //# sourceMappingURL=index.d.ts.map