import React from 'react'; import type { ReactNode } from 'react'; export declare const Text: { ({ value, width, lines, copyable, }: { value: ReactNode; width?: string | number | undefined; lines?: number | undefined; copyable?: boolean | undefined; }): React.JSX.Element; displayName: string; };