import type { ReactNode } from 'react'; export type CardPropsType = { header?: ReactNode; children: ReactNode; }; export declare function Card({ header, children }: CardPropsType): import("react/jsx-runtime").JSX.Element;