import { loosegp } from '../../Types';
import { GrandPrix } from './GrandPrix';
export declare class Circuit {
    constructor(grandprix: GrandPrix, data: loosegp['Circuit']);
    grandprix: GrandPrix;
    name: string;
    id: string;
    location: {
        latitude: number;
        longitude: number;
        locality: string;
        country: string;
    };
}
