import { AbiMap, JsonAbi, Provider } from 'fuels'; import { FuelTransaction } from './types.js'; export type FuelFetchConfig = { includeFailed?: boolean; }; export declare const DEFAULT_FUEL_FETCH_CONFIG: FuelFetchConfig; export declare function decodeFuelTransaction(gqlTransaction: any, provider: Provider): Promise; export declare function decodeLog(receipt: any | undefined, abi: JsonAbi): { logId: string; data: any; } | null; export declare function decodeFuelTransactionWithAbi(gqlTransaction: any, abiMap: AbiMap, provider: Provider): Promise; //# sourceMappingURL=transaction.d.ts.map