export declare class DataService {
    protected id: string;
    protected title: {
        [lang: string]: string;
    };
    protected endpointURL: string;
    protected extent?: string;
    constructor(obj: any);
    getEndpointURL(): string;
    getTitle(lang: string): string;
    getId(): string;
    getExtent(): string;
}
