import { JSX } from "react";
export interface TextProps {
    children: JSX.Element[] | JSX.Element | string;
    className?: string;
    size: string;
    type: string;
    as?: string;
}
