/**
* the docs ui kit provides the basic elements to compose card UIs but does not provide
* the finished card, which would imply how Links are handled and would imply certain context
*
* A full composition of a card could look like:
*
*
*
* {props.image}
*
* {props.icon}}
*
* {props.title}
*
*
* {props.children}
*
*
*
*
*
* {props.textLink}
*
*
*
*
*
*
*
*
*/
export type CardsContainerProps = {
narrow?: boolean;
fitContentColumn?: boolean;
};
export declare const CardsContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
} & CardsContainerProps, import("react").DetailedHTMLProps, HTMLUListElement>, {}>;
export type CardContainerProps = {
clickable?: boolean;
};
export declare const CardContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
} & CardContainerProps, import("react").DetailedHTMLProps, HTMLLIElement>, {}>;
export declare const ImageContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
}, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;
export declare const IconContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
}, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;
export declare const InlineContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
}, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;
export type TitleProps = {
smallTitle?: boolean;
};
export declare const Title: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
} & TitleProps, import("react").DetailedHTMLProps, HTMLHeadingElement>, {}>;
export declare const BodyContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
}, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;
export declare const ReadMoreContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
}, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;
export declare const ReadMore: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
}, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;
export type StackContainerProps = {
scale?: string;
};
export declare const StackContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType;
} & StackContainerProps, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;