/// import SeverityType from '../../types/SeverityType'; import { box } from '../../utility/box'; export declare const variantColor: (variant: SeverityType | 'descriptive' | undefined) => string; export type PropsType = typeof box.props & { 'data-testid'?: string; size?: 'small' | 'regular' | 'large' | 'extraLarge' | 'display'; variant?: SeverityType | 'descriptive'; textAlign?: 'left' | 'right' | 'center' | 'justify'; compact?: boolean; strong?: boolean; strikethrough?: boolean; color?: string; disabled?: boolean; }; declare const Text: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLParagraphElement>, PropsType>>; export default Text;