import React from "react"; import type { variant, color, shadow, floated, className, children } from "../../types/components/card"; export interface CardHeaderProps extends React.ComponentProps<"div"> { variant?: variant; color?: color; shadow?: shadow; floated?: floated; className?: className; children: children; } export declare const CardHeader: React.ForwardRefExoticComponent & React.RefAttributes>; export default CardHeader; //# sourceMappingURL=CardHeader.d.ts.map