import { z } from 'zod'; declare const shortenSchema: z.ZodObject<{ url: z.ZodString; slug: z.ZodOptional>; advancedLog: z.ZodOptional>; }, "strip", z.ZodTypeAny, { url: string; slug?: string | undefined; advancedLog?: boolean | undefined; }, { url: string; slug?: string | undefined; advancedLog?: boolean | undefined; }>; type IShorten = z.infer; export type { IShorten };