export interface CompletionGateCheck { status: "available" | "completion_gate_unavailable"; bundle_sha256: string; hook_sha256: string; findings: string[]; } export declare function checkLongTaskCompletionGate(repositoryRoot: string, packageRoot: string): Promise;