import { JSONSchema, ValidateFunction } from '../validation'; /** * Represents a Linker-Server Authorization. * * @public */ export type LinkerAuthorization = { name: string; desc: string; startDate?: string; endDate?: string; contactInfo: { name: string; [key: string]: string; }; onlyDev?: boolean; addresses: string[]; plots: string[]; }; export declare namespace LinkerAuthorization { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=linker-authorization.d.ts.map