/** * Global template scaffolding: injection template and orchestrator * identity file deployment under the global CLEO home. */ import type { ScaffoldResult } from '@cleocode/contracts/scaffold-diagnostics'; /** * Ensure the global CLEO injection template is installed. * * Idempotent: skips if the template already exists with correct content. * * @returns Scaffold result indicating the action taken */ export declare function ensureGlobalTemplates(): Promise; /** * Ensure the Cleo Prime identity file is deployed to the global XDG path. * * SSoT architecture (T631): CLEOOS-IDENTITY.md lives ONCE at the global path. * Idempotent. Always overwrites if `forceRefresh` is true. * * @param forceRefresh - Overwrite even if the file exists. Default false. * @returns ScaffoldResult describing what happened. */ export declare function ensureGlobalIdentity(forceRefresh?: boolean): Promise; //# sourceMappingURL=ensure-templates.d.ts.map