type Props = {
    header?: React.ReactNode;
    body?: React.ReactNode;
    footer?: React.ReactNode;
    align?: "center" | "left" | "right";
    className?: string;
    interactive?: boolean;
    href?: string;
    padding?: "s" | "m" | "l";
    highlight?: boolean;
    ungrouped?: boolean;
};
export declare const VuiCard: ({ header, body, footer, align, interactive, href, className, padding, highlight, ungrouped, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
