import React from 'react'; import { StyleProp, TextStyle } from 'react-native'; export interface StreamingCursorProps { /** Caret glyph. Defaults to a thin block. */ char?: string; /** Blink period in ms (one fade cycle). Default 600. */ duration?: number; style?: StyleProp; } /** * A blinking caret meant to be rendered inline at the end of a streaming * message. Rendered as nested , so it inherits the bubble text color. */ export declare function StreamingCursor({ char, duration, style, }: StreamingCursorProps): React.ReactElement; //# sourceMappingURL=StreamingCursor.d.ts.map