import { HTMLAttributes, PropsWithChildren } from "react";
import { Variant } from "../../@types/Colors";
interface ICard extends PropsWithChildren> {
variant?: Variant;
isBordered?: boolean;
imageFull?: boolean;
size?: "normal" | "compact";
isSide?: boolean;
}
export declare const Card: import("react").ForwardRefExoticComponent>;
export {};