import { ComponentProps, ReactNode } from 'react'; import { Color } from '../../types.js'; import { Size, TextAlign } from '../../generated.js'; export type TextProps = Omit, "children" | "color"> & { align?: TextAlign; children: ReactNode; color?: Color | string | null; copyable?: boolean; copyLabel?: string; copyValue?: string; size?: Size; }; export declare function Text({ align, children, className, color, copyable, copyLabel, copyValue, size, style, ...props }: TextProps): import("react").JSX.Element;