export interface Container { size: "small" | "medium"; tagBackgroundColor?: string; charUnlimited: boolean; squaredBottom: boolean; fullWidth: boolean; } export declare const Container: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, Container, never>; export interface Description { descriptionOnly?: boolean; size: "small" | "medium"; tagColor?: string; } export declare const Description: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, Description, never>; export interface Value { valueOnly?: boolean; size: "small" | "medium"; squaredBottom: boolean; valueBackgroundColor: string; valueColor: string; } export declare const Value: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, Value, never>;