import { TextProps as ThemeUITextProps } from 'theme-ui'; export declare enum variants { SMALL = "sm", NORMAL = "md", LARGE = "lg", LINK = "link" } export declare enum weights { LIGHT = "light", NORMAL = "normal", BOLD = "bold" } type variantProps = `${variants}`; type weightProps = `${weights}` | number; type sizeProps = string; export interface TextProps extends Omit { variant?: variantProps; weight?: weightProps; color?: string; size?: sizeProps; [key: string]: any; } export {};