import { PatternSegments } from './types';
type DummyUrlOptions = Partial<{
    strict: boolean;
    defaultScheme: string;
    subdomain: string;
    pathAndQueryReplacer: string;
    rootDomain: string;
}>;
export declare function getDummyUrl(patternSegments: PatternSegments, replacements?: DummyUrlOptions): URL | null;
export {};
