import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { TextBlock as TextBlockElement, TextBlockProperties } from '@watching/clips/elements'; export interface TextBlockProps extends PropsWithChildren> { ref?: ForwardedRef; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-text-block': TextBlockProps; } } } export declare const TextBlock: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=TextBlock.d.ts.map