import { z } from 'zod'; import { type PluginUrls } from '@code-pushup/models'; export declare const pluginUrlContextSchema: z.ZodObject<{ urlCount: z.ZodNumber; weights: z.ZodRecord; }, z.core.$strip>; export type PluginUrlContext = z.infer; export declare const SINGLE_URL_THRESHOLD = 1; export declare function normalizeUrlInput(input: PluginUrls): { urls: string[]; context: PluginUrlContext; }; export declare function getUrlIdentifier(url: string): string;