import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.tx.config.v1"; /** Config is the config object of the x/auth/tx package. */ export interface Config { /** * skip_ante_handler defines whether the ante handler registration should be skipped in case an app wants to override * this functionality. */ skipAnteHandler: boolean; /** * skip_post_handler defines whether the post handler registration should be skipped in case an app wants to override * this functionality. */ skipPostHandler: boolean; } export declare const Config: { encode(message: Config, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Config; fromJSON(object: any): Config; toJSON(message: Config): unknown; create(base?: DeepPartial): Config; fromPartial(object: DeepPartial): Config; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};