import { ReactNode } from 'react'; export declare type TextProps = { children?: ReactNode; }; export declare function Text({ children, }: TextProps): JSX.Element; export declare namespace Text { var displayName: string; }