import { type CardTransferFormType } from './CardTransferContent'; export interface TransactionStore { transaction: { orderId: string; type: 'p2p' | 'b2c'; url: string; }; } export declare const useSubmitCardTransfer: (formType: CardTransferFormType) => ({ amount }: { amount: number; }) => Promise;