import { z } from 'zod'; import type { Flavored } from './types.js'; /** * Formats a URL by removing 'https://', 'www.', and trailing slashes. * Notably it does not remove 'http://', so the user can see that it's insecure. */ export declare const format_url: (url: string) => string; export declare const Url: z.ZodURL; export type Url = Flavored, 'Url'>; //# sourceMappingURL=url.d.ts.map