import { CosmosWorkflowBuilderOptions } from './cosmos-workflow-builder'; import { ICosmosSigner, CosmosSignArgs } from '../signers/types'; import { CosmosTx } from '../signers/types'; /** * Amino (JSON) workflow for Cosmos transactions * Uses SIGN_MODE_LEGACY_AMINO_JSON for JSON-based signing */ export declare class AminoWorkflow { private builder; constructor(signer: ICosmosSigner, signArgs: CosmosSignArgs, options?: Omit); /** * Build and sign the transaction using amino (JSON) workflow */ build(): Promise; /** * Static factory method for convenience */ static buildTransaction(signer: ICosmosSigner, signArgs: CosmosSignArgs, options?: Omit): Promise; }