///
export interface IContainerProps {
hasIcon: boolean;
hasContent: boolean;
size: 'normal' | 'large';
variant: 'default' | 'primary' | 'success' | 'warning' | 'danger';
}
export declare const Container: import("styled-components").StyledComponentClass & import("react").HTMLAttributes & IContainerProps, any, import("react").ClassAttributes & import("react").HTMLAttributes & IContainerProps>;