declare type RegisterSuccessType = { customerRef: string; walletId: string; }; declare type OmnipayProps = { color: string; env: 'dev' | 'prod'; publicKey: string; phoneNumber: string; onRegistrationSuccessful?: ({ customerRef, walletId, }: RegisterSuccessType) => void; onClose?: () => void; }; export declare const Registration: ({ color, env, publicKey, phoneNumber, onRegistrationSuccessful, onClose, }: OmnipayProps) => JSX.Element; export {}; //# sourceMappingURL=Registration.d.ts.map