export declare class CarefulSidecar { private readonly projectRoot; private readonly sessionId; constructor(projectRoot: string, sessionId: string); private path; /** * Read the careful flag. Missing/malformed file => false (autopilot). Never throws. */ isCareful(): Promise; /** * Persist the careful flag atomically. */ setCareful(on: boolean): Promise; } //# sourceMappingURL=careful-sidecar.d.ts.map