import { HTMLAttributes, ReactNode } from 'react'; import { FontSizeType, FontWeightType } from '../../system/ThemeProvider/lib/types'; export type TextProps = HTMLAttributes & { color?: 'textDefault' | 'background6'; children: ReactNode; size?: FontSizeType; weight?: FontWeightType; }; /** * ## Text * * @example Okay Cool * Okay Cool * Okay Cool */ export declare const Text: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, HTMLAttributes & { color?: "textDefault" | "background6" | undefined; children: ReactNode; size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined; weight?: "normal" | "bold" | undefined; }, never>;