/** * @file validate-remote-url.ts * @description Shared URL validation for .remote() factory methods. */ /** * Validate that a remote URL has a valid URI scheme per RFC 3986. * Used by all .remote() factory methods (Tool, Resource, Prompt, Agent, Skill, Job). * * @param url - The URL to validate * @throws Error if the URL does not have a valid scheme */ export declare function validateRemoteUrl(url: string): void; //# sourceMappingURL=validate-remote-url.d.ts.map