import BasicTransferEventData from './BasicTransferEventData';
/**
 * Dispatched when there is a recognized problem during transfer.
 */
interface TransferWarnEventData extends BasicTransferEventData {
    /**
     * A machine readable error code of the transfer issue.
     */
    code: string;
    /**
     * A human readable English message describing the problem.
     */
    message: string;
    /**
     * Optional auxiliary information that may accompany the error in some cases.
     */
    description?: string;
}
export default TransferWarnEventData;
//# sourceMappingURL=TransferWarnEventData.d.ts.map