///
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
interface StyledCardProps {
/** The background color of the card */
background?: string;
/** The card elevation determining the shadow */
elevation?: number;
/** Remove padding */
noPadding?: boolean;
/** Show or hide card base */
transparent?: boolean;
}
export declare const StyledCard: import("styled-components").StyledComponent<"div", any, StyledCardProps, never>;
export declare const Title: import("styled-components").StyledComponent<({ as, children, color, size, font, letterSpacing, uppercase, weight, upgrade, ...other }: import("../Text").TextProps & import("react").HTMLAttributes) => JSX.Element, any, {}, never>;
interface SubtitleProps {
/** Control the position of the subtitle. Can be either inside the card or outside of it */
subtitlePlacement?: 'inside' | 'outside';
/** Style */
style?: any;
}
export declare const Subtitle: import("styled-components").StyledComponent<({ as, children, color, size, font, letterSpacing, uppercase, weight, upgrade, ...other }: import("../Text").TextProps & import("react").HTMLAttributes) => JSX.Element, any, SubtitleProps, never>;
export {};