export declare class PathParameters {
    private readonly url;
    private readonly pathParameters;
    constructor(url: string, pathParameters: Record<string, string>);
    deriveUrl(): string;
}
