import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.iam.v1"; /** A ServiceAccount resource. For more information, see [Service accounts](/docs/iam/concepts/users/service-accounts). */ export interface ServiceAccount { /** ID of the service account. */ id: string; /** ID of the folder that the service account belongs to. */ folderId: string; /** Creation timestamp. */ createdAt?: Date; /** * Name of the service account. * The name is unique within the cloud. 3-63 characters long. */ name: string; /** Description of the service account. 0-256 characters long. */ description: string; /** Resource labels as `` key:value `` pairs. Maximum of 64 per resource. */ labels: { [key: string]: string; }; /** Timestamp for the last authentication of this service account. */ lastAuthenticatedAt?: Date; } export interface ServiceAccount_LabelsEntry { key: string; value: string; } export declare const ServiceAccount: { encode(message: ServiceAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ServiceAccount; fromJSON(object: any): ServiceAccount; toJSON(message: ServiceAccount): unknown; fromPartial, never>) | undefined; lastAuthenticatedAt?: Date | undefined; } & Record, never>>(object: I): ServiceAccount; }; export declare const ServiceAccount_LabelsEntry: { encode(message: ServiceAccount_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ServiceAccount_LabelsEntry; fromJSON(object: any): ServiceAccount_LabelsEntry; toJSON(message: ServiceAccount_LabelsEntry): unknown; fromPartial, never>>(object: I): ServiceAccount_LabelsEntry; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};