import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface CardHeaderProps extends HTMLAttributes { ref?: Ref; asChild?: boolean; children?: ReactNode; } export declare const CardHeader: FC;