/** * `totem link ` — Link a neighboring repository's lessons into this project. * * Adds the linked repo's .totem/lessons as an ingest target in totem.config.ts. * After linking, `totem sync` will index both local and linked lessons. */ export interface LinkOptions { unlink?: boolean; yes?: boolean; } export declare function linkCommand(targetPath: string, options: LinkOptions): Promise; //# sourceMappingURL=link.d.ts.map