/** * Quick safety check for file operations */ export declare function checkFileSafety(operation: 'read' | 'write' | 'delete', path: string): { allowed: boolean; message?: string; };