import type { NetworkPlan } from '../core/models/network-plan.js'; import type { FileService } from '../services/file.service.js'; interface UseAutoSaveOptions { plan: NetworkPlan | null; currentFilename: string | null; fileService: FileService; onError?: (error: Error) => void; onSuccess?: () => void; } export declare function useAutoSave({ plan, currentFilename, fileService, onError, onSuccess, }: UseAutoSaveOptions): void; export {};