import type { ComponentType } from 'react'; import type { ViewProps } from 'react-native'; import type { DirectEventHandler, Int32 } from 'react-native/Libraries/Types/CodegenTypes'; export type ScreenReaderFocusChange = Readonly<{ isFocused: boolean; }>; export type ScreenReaderDescendantFocusChanged = Readonly<{ status: string; }>; export interface A11yIndexNativeComponentProps extends ViewProps { orderIndex: Int32; orderKey: string; orderFocusType: Int32; onScreenReaderFocusChange?: DirectEventHandler; } export interface NativeCommands { focus: (viewRef: React.ElementRef) => void; } export declare const Commands: NativeCommands; declare const _default: (props: Omit & { ref?: React.Ref; }) => React.ReactNode; export default _default; //# sourceMappingURL=A11yIndexNativeComponent.d.ts.map