import type { ReconcilePolicy } from '@volter-ai-dev/twin'; /** The linked repo as `owner/name`, or null if this project has no github link. */ export declare function linkedRepo(projectRoot: string): string | null; /** The configured reconcile policy for the link (default `merge`). */ export declare function linkedPolicy(projectRoot: string): ReconcilePolicy; /** Pull and/or push the linked GitHub repo. No-op when the project has no github link. */ export declare function syncLinked(projectRoot: string, dir: { pull?: boolean; push?: boolean; }): Promise;