//#region src/cli/commands/deploy/config-id-injector.d.ts export interface EnsureConfigIdResult { id: string; injected: boolean; } /** * Ensure `tailor.config.ts` has an `id` property on the `defineConfig({...})` * argument. Generates a UUID when missing and writes it back to the file. * Returns null when the file does not contain a `defineConfig()` call (e.g. * a wrapper that re-exports another config). * @param configPath - Absolute path to the config file * @returns Resolved id and whether it was newly injected, or null if skipped */ export declare function ensureConfigId(configPath: string): Promise; //#endregion