/** * Checks if the resolved output path is safe to write to. * * Strategy: allow any path the user owns EXCEPT known OS-critical system directories. * We do NOT restrict to process.cwd() - users must be able to write output anywhere * they have permission (e.g. ~/Documents, /tmp, custom output dirs, etc). */ export declare function isSafeOutputPath(resolvedPath: string): boolean;