/** * Identity-shared zod schemas for connector authors. * * Kept deliberately minimal so extracted connector packages validate URLs the * same way the built-ins do, without each redefining the rule. */ import * as z from "zod"; /** Validates a URL string (any scheme accepted by the URL constructor). */ export declare const urlSchema: z.ZodString; //# sourceMappingURL=schemas.d.ts.map