import type { CentralWorktreeRequest } from './centralStateRepository.js'; export interface CentralWorktreeResolution { readonly enabled: boolean; readonly baseDirectory?: string; readonly cloneMetadataDirectory?: string; readonly skipProjectLocalTaktSync: true; } /** * Resolve Web UI worktree policy without consulting or writing project * framework state. Provisioning is performed by the clone adapter. */ export declare function resolveCentralWorktree(input: { readonly request: CentralWorktreeRequest; readonly projectDirectory: string; readonly executionDirectory: string; readonly globalConfigDirectory: string; readonly stateId: string; readonly configuredWorktreeDirectory?: string; readonly centralFallbackAllowed?: boolean; }): CentralWorktreeResolution; //# sourceMappingURL=centralWorktree.d.ts.map