import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.organizationmanager.v1.saml"; /** A certificate. */ export interface Certificate { /** ID of the certificate. */ id: string; /** ID of the federation that the certificate belongs to. */ federationId: string; /** Name of the certificate. */ name: string; /** Description of the certificate. */ description: string; /** Creation timestamp. */ createdAt?: Date; /** Certificate data in PEM format. */ data: string; } export declare const Certificate: { encode(message: Certificate, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Certificate; fromJSON(object: any): Certificate; toJSON(message: Certificate): unknown; fromPartial, never>>(object: I): Certificate; }; 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 {};