import { Interaction } from "@onflow/typedefs"; import { SdkContext } from "../context/context"; export declare function createResolveComputeLimit(context: SdkContext): (ix: Interaction) => Promise; /** * Resolves the compute limit for a transaction from configuration or applies default values. * * @param ix The interaction object to resolve compute limit for * @returns The interaction with resolved compute limit */ export declare const resolveComputeLimit: (ix: Interaction) => Promise;