import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.capability.v1beta1"; /** * Capability defines an implementation of an object capability. The index * provided to a Capability must be globally unique. */ export interface Capability { index: bigint; } /** * Capability defines an implementation of an object capability. The index * provided to a Capability must be globally unique. */ export interface CapabilitySDKType { index: bigint; } /** * Owner defines a single capability owner. An owner is defined by the name of * capability and the module name. */ export interface Owner { module: string; name: string; } /** * Owner defines a single capability owner. An owner is defined by the name of * capability and the module name. */ export interface OwnerSDKType { module: string; name: string; } /** * CapabilityOwners defines a set of owners of a single Capability. The set of * owners must be unique. */ export interface CapabilityOwners { owners: Owner[]; } /** * CapabilityOwners defines a set of owners of a single Capability. The set of * owners must be unique. */ export interface CapabilityOwnersSDKType { owners: OwnerSDKType[]; } export declare const Capability: { typeUrl: string; encode(message: Capability, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Capability; fromJSON(object: any): Capability; toJSON(message: Capability): unknown; fromPartial & { index?: bigint; } & Record, never>>(object: I): Capability; }; export declare const Owner: { typeUrl: string; encode(message: Owner, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Owner; fromJSON(object: any): Owner; toJSON(message: Owner): unknown; fromPartial & { module?: string; name?: string; } & Record, never>>(object: I): Owner; }; export declare const CapabilityOwners: { typeUrl: string; encode(message: CapabilityOwners, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): CapabilityOwners; fromJSON(object: any): CapabilityOwners; toJSON(message: CapabilityOwners): unknown; fromPartial & { owners?: Owner[] & (Owner & { module: string; name: string; } & Record, never>)[] & Record, never>; } & Record, never>>(object: I): CapabilityOwners; };