import { Route } from '../Route';
import { Project } from '../../interfaces/project';
import { URL } from 'node:url';
import CacheManager from '../../util/CacheManager';
export declare class GetProjectRoute extends Route<Project> {
    private projectId;
    constructor(baseUrl: URL, ua: string | undefined, cacheManager: CacheManager, projectId: string);
    getCacheKey(): string | null;
    getUrl(): URL;
    parseData(data: any): Project;
}
