import type { HostComponent, ViewProps } from 'react-native'; import type { DirectEventHandler } from 'react-native/Libraries/Types/CodegenTypes'; type OnExitActionEvent = Readonly<{}>; export interface NativeProps extends ViewProps { visible: boolean; title?: string; backgroundColor?: string; textColor?: string; onExitAction: DirectEventHandler; } type ComponentType = HostComponent; declare const _default: ComponentType; export default _default; //# sourceMappingURL=NativeConnectAccountOnboardingView.d.ts.map