@stripe/stripe-react-native
Version:
Stripe SDK for React Native
14 lines • 567 B
TypeScript
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<OnExitActionEvent>;
}
type ComponentType = HostComponent<NativeProps>;
declare const _default: ComponentType;
export default _default;
//# sourceMappingURL=NativeConnectAccountOnboardingView.d.ts.map