import React from 'react'; import { NormalTypes } from "../utils/prop-types"; export interface Props { tag: keyof JSX.IntrinsicElements; type?: NormalTypes; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type TextChildProps = Props & NativeAttrs; declare const TextChild: React.FC>; export default TextChild;