/**
 * Validates that the path is safe for removal operations.
 * Prevents deletion of dangerous paths that could affect entire buckets.
 *
 * @param path - The path to validate
 * @throws Error if the path is considered dangerous
 */
export declare const validateRemovePath: (path: string) => void;
