import { type PieceRunArgs } from 'frogbot/pieces'; import { z } from 'zod'; declare const inputSchema: z.ZodObject<{ url: z.ZodString; returnArrays: z.ZodDefault; }, z.core.$strip>; export declare const parseUrl: { slug: string; label: string; description: string; input: z.ZodObject<{ url: z.ZodString; returnArrays: z.ZodDefault; }, z.core.$strip>; output: z.ZodObject<{ baseUrl: z.ZodString; domain: z.ZodString; path: z.ZodString; queryParameters: z.ZodRecord, z.ZodNull]>>; hash: z.ZodString; }, z.core.$strip>; run({ input }: PieceRunArgs, object, undefined>): Promise<{ baseUrl: string; domain: string; path: string; queryParameters: Record; hash: string; }>; }; export {}; //# sourceMappingURL=parseUrl.d.ts.map