export interface UserInput { proof: string[]; tx: Tx; [property: string]: any; } export interface Tx { chainId: number; data: string; multisig: string; nonce: number; to: string; value: number; [property: string]: any; } export declare class Convert { static toUserInput(json: string): UserInput; static userInputToJson(value: UserInput): string; } //# sourceMappingURL=execute.d.ts.map