import type { WorkflowContext, WorkflowResult } from './types.js'; export interface GetBalanceInput { chainId: number; address?: string; token?: string; } export declare function getBalance(ctx: WorkflowContext, input: GetBalanceInput): Promise;