import { Size, Weight } from "../../types"; declare type TextColor = 'fade' | 'solid'; export interface TextProps { tag?: "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "div" | "span"; size?: Size; weight?: Weight; color?: TextColor; className?: string; children: any; [props: string]: any; } export declare const Text: ({ tag: Tag, size, weight, color, children, className, href, ...props }: TextProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};