/// <reference types="react" />
export interface CardProps {
    /**
     * Children to be passed into the card component. This prop allows to add card content and other
     * react structures such as divs, images and spans.
     */
    children?: React.ReactNode;
    /**
     * Footer to be passed into the card component. This prop allows to add card fooder content and other
     * react structures such as divs, images and spans.
     */
    footer?: React.ReactNode;
}
