import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** Module is the config object of the authz module. */ export interface Module { } export interface ModuleProtoMsg { typeUrl: '/cosmos.authz.module.v1.Module'; value: Uint8Array; } /** Module is the config object of the authz module. */ export interface ModuleSDKType { } export declare const Module: { typeUrl: "/cosmos.authz.module.v1.Module"; encode(_: Module, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Module; fromJSON(_: any): Module; toJSON(_: Module): JsonSafe; fromPartial(_: Partial): Module; fromProtoMsg(message: ModuleProtoMsg): Module; toProto(message: Module): Uint8Array; toProtoMsg(message: Module): ModuleProtoMsg; }; //# sourceMappingURL=module.d.ts.map