import { ResultAsync } from 'neverthrow'; import { WorkPlan } from '../../domain/term/plan/work_plan.js'; type StorageError = { type: 'StorageError'; message: string; cause?: Error; }; export declare const savePlan: (plan: WorkPlan) => ResultAsync; export declare const loadCurrentPlan: () => ResultAsync; export {}; //# sourceMappingURL=planStorage.d.ts.map