/**
 * Copilot hook translator — emits dual-format JSON: a workflow file at
 * `.github/hooks/<id>.json` plus an inline `hooks:` block embedded in the
 * agent .agent.md frontmatter when the hook targets a specific agent.
 *
 * Per the parity research, Copilot hook discovery is partially documented;
 * the emission here is conservative — produces the shape Copilot Chat is
 * known to consume, marks AIWG provenance, and stages behind the feature
 * flag handled by the orchestrator.
 */
import type { HookSource, TranslateOptions, TranslateResult } from './types.js';
export declare function translateForCopilot(source: HookSource, options: TranslateOptions): Promise<TranslateResult>;
//# sourceMappingURL=copilot-translator.d.ts.map