import type { OhMyCCAgentConfig } from "../config/schema"; export declare function isBlockedAddress(address: string, allowLoopback: boolean): boolean; type UrlInspection = { url: string; reason: string; blocked: boolean; }; export type SsrfGuardOptions = { allowLoopback: boolean; extraBlockedHosts: Set; extraAllowedHosts: Set; }; export declare function inspectUrl(url: string, options: SsrfGuardOptions): Promise; export declare function createSsrfGuard(config: OhMyCCAgentConfig): (input: unknown, output: unknown) => Promise; export {};