import { ReactNode, MouseEvent } from "react";
type Props = {
    className?: string;
    fullHeight?: boolean;
    href?: string;
    onClick?: (e: MouseEvent) => void;
    padding?: "xxs" | "xs" | "s" | "m" | "l";
    children?: React.ReactNode;
    error?: string | ReactNode;
    warning?: string | ReactNode;
};
export declare const VuiSimpleCard: ({ href, className, fullHeight, padding, children, onClick, error, warning, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
