import type { ITileParserCFG } from '@antv/l7-core'; import { RasterTileType } from '@antv/l7-core'; import type { ITileBand } from '@antv/l7-utils'; import type { IParserData } from '../interface'; export declare const rasterDataTypes: RasterTileType[]; /** * * @param data * @param cfg * @returns */ export default function rasterTile(data: string | string[] | ITileBand[], cfg?: Partial): IParserData;