import Long from "long"; import _m0 from "protobufjs/minimal"; import { Any } from "../../../google/protobuf/any"; export declare const protobufPackage = "cosmos.authz.v1beta1"; /** Since: cosmos-sdk 0.43 */ /** * GenericAuthorization gives the grantee unrestricted permissions to execute * the provided method on behalf of the granter's account. */ export interface GenericAuthorization { /** Msg, identified by it's type URL, to grant unrestricted permissions to execute */ msg: string; } /** * Grant gives permissions to execute * the provide method with expiration time. */ export interface Grant { authorization?: Any; expiration?: Date; } /** * GrantAuthorization extends a grant with both the addresses of the grantee and granter. * It is used in genesis.proto and query.proto * * Since: cosmos-sdk 0.45.2 */ export interface GrantAuthorization { granter: string; grantee: string; authorization?: Any; expiration?: Date; } export declare const GenericAuthorization: { encode(message: GenericAuthorization, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): GenericAuthorization; fromJSON(object: any): GenericAuthorization; toJSON(message: GenericAuthorization): unknown; create]: never; }>(base?: I | undefined): GenericAuthorization; fromPartial]: never; }>(object: I_1): GenericAuthorization; }; export declare const Grant: { encode(message: Grant, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): Grant; fromJSON(object: any): Grant; toJSON(message: Grant): unknown; create]: never; }) | undefined; expiration?: Date | undefined; } & { [K_1 in Exclude]: never; }>(base?: I | undefined): Grant; fromPartial]: never; }) | undefined; expiration?: Date | undefined; } & { [K_3 in Exclude]: never; }>(object: I_1): Grant; }; export declare const GrantAuthorization: { encode(message: GrantAuthorization, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): GrantAuthorization; fromJSON(object: any): GrantAuthorization; toJSON(message: GrantAuthorization): unknown; create]: never; }) | undefined; expiration?: Date | undefined; } & { [K_1 in Exclude]: never; }>(base?: I | undefined): GrantAuthorization; fromPartial]: never; }) | undefined; expiration?: Date | undefined; } & { [K_3 in Exclude]: never; }>(object: I_1): GrantAuthorization; }; declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; declare type KeysOfUnion = T extends T ? keyof T : never; export declare type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude>]: never; }; export {};