import type { BubblingEventHandler, DirectEventHandler, Float, Int32, UnsafeMixed } from 'react-native/Libraries/Types/CodegenTypes'; import type { ColorValue, HostComponent, ViewProps } from 'react-native'; import React from 'react'; export interface LinkNativeRegex { pattern: string; caseInsensitive: boolean; dotAll: boolean; isDisabled: boolean; isDefault: boolean; } export interface OnChangeTextEvent { value: string; } export interface OnChangeHtmlEvent { value: string; } export interface OnChangeStateEvent { bold: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; italic: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; underline: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; strikeThrough: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; inlineCode: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h1: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h2: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h3: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h4: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h5: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h6: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; codeBlock: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; blockQuote: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; orderedList: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; unorderedList: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; link: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; image: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; mention: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; checkboxList: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; alignment: string; } export interface OnLinkDetected { text: string; url: string; start: Int32; end: Int32; } export interface OnMentionDetectedInternal { text: string; indicator: string; payload: string; } export interface OnMentionDetected { text: string; indicator: string; attributes: Record; } export interface OnMentionEvent { indicator: string; text: UnsafeMixed; } export interface OnChangeSelectionEvent { start: Int32; end: Int32; text: string; } export interface OnRequestHtmlResultEvent { requestId: Int32; html: UnsafeMixed; } export interface OnSubmitEditing { text: string; } export interface OnKeyPressEvent { key: string; } export interface ContextMenuItemConfig { text: string; } export interface TextShortcut { trigger: string; style: string; } export interface OnContextMenuItemPressEvent { itemText: string; selectedText: string; selectionStart: Int32; selectionEnd: Int32; styleState: { bold: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; italic: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; underline: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; strikeThrough: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; inlineCode: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h1: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h2: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h3: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h4: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h5: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; h6: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; codeBlock: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; blockQuote: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; orderedList: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; unorderedList: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; link: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; image: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; mention: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; checkboxList: { isActive: boolean; isConflicting: boolean; isBlocking: boolean; }; alignment: string; }; } interface TargetedEvent { target: Int32; } export interface PastedImage { uri: string; type: string; width: Float; height: Float; } export interface OnPasteImagesEvent { images: { uri: string; type: string; width: Float; height: Float; }[]; } type Heading = { fontSize?: Float; bold?: boolean; }; export interface HtmlStyleInternal { h1?: Heading; h2?: Heading; h3?: Heading; h4?: Heading; h5?: Heading; h6?: Heading; blockquote?: { borderColor?: ColorValue; borderWidth?: Float; gapWidth?: Float; color?: ColorValue; }; codeblock?: { color?: ColorValue; borderRadius?: Float; backgroundColor?: ColorValue; }; code?: { color?: ColorValue; backgroundColor?: ColorValue; }; a?: { color?: ColorValue; textDecorationLine?: string; }; mention?: UnsafeMixed; ol?: { gapWidth?: Float; marginLeft?: Float; markerFontWeight?: string; markerColor?: ColorValue; }; ul?: { bulletColor?: ColorValue; bulletSize?: Float; marginLeft?: Float; gapWidth?: Float; }; ulCheckbox?: { gapWidth?: Float; boxSize?: Float; marginLeft?: Float; boxColor?: ColorValue; }; } export interface NativeProps extends ViewProps { autoFocus?: boolean; editable?: boolean; defaultValue?: string; placeholder?: string; placeholderTextColor?: ColorValue; mentionIndicators: string[]; cursorColor?: ColorValue; selectionColor?: ColorValue; autoCapitalize?: string; htmlStyle?: HtmlStyleInternal; scrollEnabled?: boolean; linkRegex?: LinkNativeRegex; contextMenuItems?: ReadonlyArray>; textShortcuts: ReadonlyArray>; returnKeyType?: string; returnKeyLabel?: string; submitBehavior?: string; allowFontScaling?: boolean; onInputFocus?: DirectEventHandler; onInputBlur?: DirectEventHandler; onChangeText?: DirectEventHandler; onChangeHtml?: DirectEventHandler; onChangeState?: DirectEventHandler; onLinkDetected?: DirectEventHandler; onMentionDetected?: DirectEventHandler; onMention?: DirectEventHandler; onChangeSelection?: DirectEventHandler; onRequestHtmlResult?: DirectEventHandler; onInputKeyPress?: DirectEventHandler; onPasteImages?: DirectEventHandler; onContextMenuItemPress?: DirectEventHandler; onSubmitEditing?: BubblingEventHandler; color?: ColorValue; fontSize?: Float; lineHeight?: Float; fontFamily?: string; fontWeight?: string; fontStyle?: string; isOnChangeHtmlSet: boolean; isOnChangeTextSet: boolean; androidExperimentalSynchronousEvents: boolean; useHtmlNormalizer: boolean; } type ComponentType = HostComponent; interface NativeCommands { focus: (viewRef: React.ElementRef) => void; blur: (viewRef: React.ElementRef) => void; setValue: (viewRef: React.ElementRef, text: string) => void; setSelection: (viewRef: React.ElementRef, start: Int32, end: Int32) => void; toggleBold: (viewRef: React.ElementRef) => void; toggleItalic: (viewRef: React.ElementRef) => void; toggleUnderline: (viewRef: React.ElementRef) => void; toggleStrikeThrough: (viewRef: React.ElementRef) => void; toggleInlineCode: (viewRef: React.ElementRef) => void; toggleH1: (viewRef: React.ElementRef) => void; toggleH2: (viewRef: React.ElementRef) => void; toggleH3: (viewRef: React.ElementRef) => void; toggleH4: (viewRef: React.ElementRef) => void; toggleH5: (viewRef: React.ElementRef) => void; toggleH6: (viewRef: React.ElementRef) => void; toggleCodeBlock: (viewRef: React.ElementRef) => void; toggleBlockQuote: (viewRef: React.ElementRef) => void; toggleOrderedList: (viewRef: React.ElementRef) => void; toggleUnorderedList: (viewRef: React.ElementRef) => void; toggleCheckboxList: (viewRef: React.ElementRef, checked: boolean) => void; addLink: (viewRef: React.ElementRef, start: Int32, end: Int32, text: string, url: string) => void; removeLink: (viewRef: React.ElementRef, start: Int32, end: Int32) => void; addImage: (viewRef: React.ElementRef, uri: string, width: Float, height: Float) => void; startMention: (viewRef: React.ElementRef, indicator: string) => void; addMention: (viewRef: React.ElementRef, indicator: string, text: string, payload: string) => void; requestHTML: (viewRef: React.ElementRef, requestId: Int32) => void; setTextAlignment: (viewRef: React.ElementRef, alignment: string) => void; } export declare const Commands: NativeCommands; declare const _default: HostComponent; export default _default; //# sourceMappingURL=EnrichedTextInputNativeComponent.d.ts.map