import { ContractInfo, RenderContext, RenderContextBase, RenderOptions, UtilMapping } from '@cosmwasm/ts-codegen-ast'; import { BuilderFileType } from '../builder'; import { BuilderPluginBase } from './plugin-base'; export declare class RecoilPlugin extends BuilderPluginBase { utils: UtilMapping; initContext(contract: ContractInfo, options?: RenderOptions): RenderContextBase; doRender(name: string, context: RenderContext): Promise<{ type: BuilderFileType; pluginType?: string; localname: string; body: any[]; }[]>; }