/** * Browser URL security validation. */ /** * Validate a URL for browser navigation. * Blocks dangerous protocols (file://, javascript://, data://) and * private/internal IP addresses to prevent SSRF. * In Phase 3, URL whitelist from project settings will be enforced here. */ export declare function validateUrl(url: string): { valid: boolean; reason?: string; }; //# sourceMappingURL=browser-security.d.ts.map