export declare const OPENCODE_PIPELINE_AGENT = "signet-pipeline"; export declare const OPENCODE_PIPELINE_SYSTEM_PROMPT = "You are a structured data extraction system. Return ONLY valid JSON matching the requested schema. No explanations, no markdown, no code fences."; export declare const PIPELINE_PROVIDER_CHOICES: readonly ["none", "acpx", "llama-cpp", "ollama", "claude-code", "codex", "opencode", "anthropic", "openrouter", "openai-compatible", "command"]; export type PipelineProviderChoice = (typeof PIPELINE_PROVIDER_CHOICES)[number]; export type SynthesisProviderChoice = Exclude; export declare const SYNTHESIS_PROVIDER_CHOICES: SynthesisProviderChoice[]; export declare const DEFAULT_PIPELINE_TIMEOUT_MS = 90000; export declare function isPipelineProvider(value: unknown): value is PipelineProviderChoice; export declare function isSynthesisProvider(value: unknown): value is SynthesisProviderChoice; export declare function defaultPipelineModel(provider: PipelineProviderChoice): string; //# sourceMappingURL=pipeline-providers.d.ts.map