export interface Container { cardType: "elevated" | "filled" | "outlined" | "selected" | "custom"; color?: "neutral" | "brand" | "highlight" | "positive" | "informative" | "warning" | "negative" | "negative-alternative" | "subscription"; } export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Container, never>;