import { BBOXtype } from './bbox'; import { clipTileOptions, GeoJSONMultiPolygon, GeoJSONPolygon } from './types'; export declare function injectMask(maskId: string, geojson: GeoJSONPolygon | GeoJSONMultiPolygon): import("./Error").CustomError | GeoJSONPolygon | GeoJSONMultiPolygon; export declare function removeMask(maskId: string): void; export declare function clip(options: clipTileOptions): Promise; export declare function tileBBOXIntersectMask(tileBBOX: BBOXtype, maskId: string): Promise;