import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types'; import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface InstanceDomainSSL { key: string; crt: string; } export declare const InstanceDomainSSLSchema: ObjectSchema; export interface InstanceDomain extends FSDBEntity { instanceId: string; name: string; ssl?: InstanceDomainSSL; proxyConfig?: string; } export type InstanceDomainProtected = Omit; export declare const InstanceDomainSchema: ObjectSchema;