import React from 'react';
import { ITextStandAlone } from './types/text';
/**
 * @description
 * Text component is a component that can be used to create a text.
 * @param {React.PropsWithChildren<ITextStandAlone>} props
 * @returns {JSX.Element}
 * @constructor
 */
export declare const TextStandAlone: React.ForwardRefExoticComponent<ITextStandAlone & React.RefAttributes<HTMLParagraphElement>>;
