import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Text as TextElement, TextProperties } from '@watching/clips/elements'; export interface TextProps extends PropsWithChildren, 'emphasis'>> { ref?: ForwardedRef; emphasis?: TextProperties['emphasis'] | boolean; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-text': TextProps; } } } export declare const Text: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Text.d.ts.map