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