import { JSONSchema, ValidateFunction } from '../validation'; import { AuthChain } from './auth-chain'; /** * @public */ export type DeploymentToSqs = { entity: { entityId: string; authChain: AuthChain; }; lods?: string[]; contentServerUrls?: string[]; force?: boolean; animation?: string; doISS?: boolean; }; /** * @public */ export declare namespace DeploymentToSqs { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=deployments-to-sqs.d.ts.map