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