import { type CardTransferFormType } from './CardTransferContent'; export declare type CardTransferResponse = Partial<{ errorCode: number; errorMessage: string; orderId: string; formUrl: string; }>; export declare const submitCardTransfer: (typeForm: CardTransferFormType, amount: number) => Promise; export declare const isSuccessResponse: (response: CardTransferResponse | null) => response is { orderId: string; formUrl: string; }; export declare const isErrorInResponse: (response: CardTransferResponse | null) => response is { errorCode: number; errorMessage: string; };