/** * Checks if a path is safe to use. * * @remarks Checks for path traversal, absolute paths, control characters, * suspicious Unicode slashes, and long paths. * * @param filepath - filepath to check * @returns true if the path is safe */ export declare function isSafePath(filepath: string): boolean;