declare class DynamicURL {
    private url;
    constructor(url: string);
    private logger;
    setQueryParams(query: Record<string, unknown>): this;
    setRouteParams(replaceValue: string | Record<string, string>): this;
    setDynamicRoute(replaceValue: string | Record<string, string>): this;
    resolve(): string;
}
export { DynamicURL };
