export type WorkerMessage = {
    action: 'save';
    filePath: string;
    data: string;
};
export type WorkerResponse = {
    success: boolean;
    error?: string;
};
export declare const workerPath: string;
