import { HTMLProps, PropsWithChildren, ReactElement } from 'react'; export type CardHeaderProps = PropsWithChildren, 'ref' | 'prefix' | 'suffix'> & { /** * Custom prefix element */ prefix?: ReactElement; /** * Custom suffix element */ suffix?: ReactElement; /** * Render divider at the bottom */ divider?: boolean; /** * Render header content in vertical order instead of horizontal */ vertical?: boolean; }>; export declare const CardHeader: (props: Omit, "prefix" | "ref" | "suffix"> & { /** * Custom prefix element */ prefix?: ReactElement> | undefined; /** * Custom suffix element */ suffix?: ReactElement> | undefined; /** * Render divider at the bottom */ divider?: boolean | undefined; /** * Render header content in vertical order instead of horizontal */ vertical?: boolean | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes) => ReactElement> | null;