import type { HostComponent } from "react-native"; import type { ViewProps } from "react-native/Libraries/Components/View/ViewPropTypes"; import type { DirectEventHandler, Double, Int32 } from "react-native/Libraries/Types/CodegenTypes"; type KeyboardMoveEvent = Readonly<{ height: Double; progress: Double; duration: Int32; target: Int32; }>; type FocusedInputLayoutChangedEvent = Readonly<{ target: Int32; parentScrollViewTarget: Int32; layout: { x: Double; y: Double; width: Double; height: Double; absoluteX: Double; absoluteY: Double; }; }>; type FocusedInputTextChangedEvent = Readonly<{ text: string; }>; type FocusedInputSelectionChangedEvent = Readonly<{ target: Int32; selection: { start: { x: Double; y: Double; position: Int32; }; end: { x: Double; y: Double; position: Int32; }; }; }>; export interface NativeProps extends ViewProps { enabled?: boolean; statusBarTranslucent?: boolean; navigationBarTranslucent?: boolean; preserveEdgeToEdge?: boolean; onKeyboardMoveStart?: DirectEventHandler; onKeyboardMove?: DirectEventHandler; onKeyboardMoveEnd?: DirectEventHandler; onKeyboardMoveInteractive?: DirectEventHandler; onFocusedInputLayoutChanged?: DirectEventHandler; onFocusedInputTextChanged?: DirectEventHandler; onFocusedInputSelectionChanged?: DirectEventHandler; } interface NativeCommands { synchronizeFocusedInputLayout: (viewRef: React.ElementRef>) => void; } export declare const Commands: NativeCommands; declare const _default: HostComponent; export default _default;