export declare type HostedInteractionArgs = { id?: string | number; action: string; data: any; onResponse: (response: HostedInteractionResponse) => void; showWallet?: boolean; }; export declare type HostedInteractionResponse = { approved: boolean; data?: any; }; declare const hostedInteraction: ({ id, action, data, onResponse, showWallet }: HostedInteractionArgs) => void; export default hostedInteraction;