import { RawLocation } from './raw-location';
export declare class Location {
    id: number;
    name: string;
    type: string;
    dimension: string;
    residents: number[];
    url: string;
    created: Date;
    static fromJson({ created, residents, ...common }: RawLocation): Location;
}
