import { SignerInfo, Fee } from '@interchainjs/cosmos-types'; import { BaseWorkflowBuilderPlugin } from '@interchainjs/types'; import { CosmosWorkflowBuilderContext } from '../context'; /** * Staging keys created by AuthInfoPlugin */ export declare const AUTH_INFO_STAGING_KEYS: { readonly AUTH_INFO: "auth_info"; readonly AUTH_INFO_BYTES: "auth_info_bytes"; }; /** * Input parameters for AuthInfoPlugin */ export interface AuthInfoParams { signerInfos: SignerInfo[]; fee: Fee; } /** * Plugin to build auth info */ export declare class AuthInfoPlugin extends BaseWorkflowBuilderPlugin { constructor(); protected onBuild(ctx: CosmosWorkflowBuilderContext, params: AuthInfoParams): Promise; }