import type { ObservationCapability, CorrelationCapability } from "../types.js"; export declare const OPERATIONAL_ARTIFACT_CAPABILITY_ID = "discovery:operational-artifacts"; export declare const OPERATIONAL_ARTIFACT_CAPABILITY_VERSION = "1.0.0"; export declare const OPERATIONAL_ARTIFACT_OBSERVATION_CONTRACT: { produces: string[]; neverProduces: string[]; }; export declare function createOperationalArtifactCorrelationCapability(): CorrelationCapability; /** * Create the operational artifact observation capability backed by a custom * FilesystemProvider. */ export declare function createOperationalArtifactObservationCapabilityWithProvider(provider: import("../../infra/filesystem-provider.js").FilesystemProvider): ObservationCapability; /** * Create the default operational artifact observation capability. */ export declare function createOperationalArtifactObservationCapability(): ObservationCapability;