import React, { ReactNode } from 'react';
interface CardProps {
    color?: string;
    bg?: string;
    width?: string;
    height?: string;
    minHeight?: string;
    minWidth?: string;
    margin?: string;
    padding?: string;
    funcss?: string;
    children?: ReactNode;
    roundEdge?: boolean;
    maxHeight?: string;
    maxWidth?: string;
    horizontal?: boolean;
    flat?: boolean;
    id?: string;
    header?: ReactNode;
    body?: ReactNode;
    footer?: ReactNode;
    image?: ReactNode;
    noGap?: boolean;
    shadowless?: boolean;
    fab?: ReactNode;
    responsiveSmall?: boolean;
    responsiveMedium?: boolean;
    xl?: boolean;
    style?: React.CSSProperties;
}
export default function Card({ color, bg, width, height, minHeight, minWidth, margin, padding, funcss, children, roundEdge, maxHeight, maxWidth, horizontal, id, header, body, footer, noGap, fab, image, shadowless, flat, responsiveMedium, xl, responsiveSmall, style, ...rest }: CardProps): React.JSX.Element;
export {};
