#!/usr/bin/env node export function parseArgs(argv: unknown): { target: string; sourceRepo: string; sourceSha: string; clawhubRepo: string; clawhubSourceRepo: string; clawhubSourceSha: string; }; /** * Resolves the local ClawHub repository path used for docs mirroring. */ export function resolveClawHubRepoPath(value?: string, options?: Record): string; /** * Mirrors ClawHub docs into the target docs tree. */ export function syncClawHubDocsTree( targetDocsDir: unknown, options?: Record, ): { repository: unknown; sha: unknown; path: string; files: number; };