import { HTTPTileDataSourceOptions } from './http'; import { TileDataSource } from '.'; export declare class HTTPTileDataSource extends TileDataSource { TMSScheme: boolean; maxAgeHeaderCheck: boolean; baseUrl: string; timeout: number; createNative(options: HTTPTileDataSourceOptions): NTHTTPTileDataSource; set httpHeaders(value: { [k: string]: string; }); set subdomains(value: string | string[]); }