import "./Card.scss";
export type size = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
export type view = "mfg-list" | "mfg-grid";
export interface Props {
    cardHeading?: any;
    CardHeadingType?: size;
    CardHeadingClass?: any;
    CardHeadingId?: any;
    cardBodyChildren?: any;
    cardFooterChildren?: any;
    CardBodyClass?: any;
    CardFooterClass?: any;
    CardBodyId?: any;
    CardFooterId?: any;
    CardImagePath?: any;
    CardImageAlt?: any;
    CardView?: view;
    cardContentClass?: string;
    CardCustomClass?: string;
}
export declare const Card: ({ cardHeading, cardBodyChildren, cardFooterChildren, CardBodyClass, CardHeadingClass, CardBodyId, CardHeadingId, CardHeadingType, CardImagePath, CardImageAlt, CardFooterClass, CardFooterId, CardView, cardContentClass, CardCustomClass, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Card;
