import * as React from 'react'; import type { TextContainerProps } from './types'; export interface TextProps extends TextContainerProps { children: string | React.ReactNode | React.ReactNode[]; as?: 'p' | 'span' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'q' | 'em' | 'strong'; 'data-testid'?: string; } export declare const Text: ({ children, ...props }: TextProps) => JSX.Element;