import { Interaction } from "@onflow/typedefs"; interface NodeConfig { node: string; } /** * Resolves the sequence number for the proposer account by querying the blockchain. * * @param config Configuration containing the node endpoint * @returns A function that resolves the proposer sequence number for an interaction */ export declare const resolveProposerSequenceNumber: ({ node }: NodeConfig) => (ix: Interaction) => Promise; export {};