import type { TurboModule } from 'react-native'; export type InitializeArgs = { environment: string; locale: string; translations: Object; publicKey: string; style: Object; merchantIdentifier: string; paymentSession: Object; registeredCallbacks: string[]; }; export type APICallResult = { success: boolean; paymentSessionSubmissionResult?: { id: string; type: string; status: string; action?: { type: string; url?: string; }; declineReason?: string; }; }; export interface Spec extends TurboModule { initialize(args: InitializeArgs): Promise; clear(): Promise; resolveTokenized(callbackId: string, success: boolean, error: string | null): Promise; resolveSubmit(callbackId: string, args: APICallResult): Promise; } declare const _default: Spec; export default _default; //# sourceMappingURL=NativeCheckoutModule.d.ts.map