import { JSONSchema, ValidateFunction } from '../validation'; import { AuthChain } from './auth-chain'; export type CatalystDeployment = { entity: { entityId: string; entityType: string; authChain: AuthChain; metadata?: any; }; }; export declare namespace CatalystDeployment { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=catalyst-deployment.d.ts.map