import { ProjectId } from '../../../management/project/project'; export type ConnectionKeyId = string; export type ConnectionKey = { id: ConnectionKeyId; created: string; updated: string; projectId: ProjectId; settings: SigningKeyConnection; }; export type SigningKeyConnection = { type: ConnectionKeyType.SIGNING_KEY; publicKey: string; privateKey?: string; }; export declare enum ConnectionKeyType { SIGNING_KEY = "SIGNING_KEY" } //# sourceMappingURL=connection-key.d.ts.map