import { AuthChain } from '../../misc/auth-chain'; import { JSONSchema, ValidateFunction } from '../../validation'; import { Entity } from '../entity'; import { BaseEvent, Events } from './base'; export type CatalystDeploymentEvent = BaseEvent & { type: Events.Type.CATALYST_DEPLOYMENT; subType: Events.SubType.CatalystDeployment; entity: Entity; authChain: AuthChain; }; export declare namespace CatalystDeploymentEvent { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=catalyst.d.ts.map