import { COGLayer } from "@developmentseed/deck.gl-geotiff"; import { type OmTileData, type RasterStyle } from "./raster-pipeline"; /** COGLayer styling scalars (rescale window, colormap, nodata). Shared with the Zarr layer; re-exported for consumer wrappers. */ export type OmCOGLayerExtraProps = RasterStyle; type AnyProps = Record; declare const OmCOGLayer_base: new (...props: AnyProps[]) => InstanceType; /** * The manifest-facing class behind ``. Styling * attributes present → the Float32 pipeline above; none → the upstream * inferred default pipeline (plain RGB COGs render correctly untouched). */ export declare class OmCOGLayer extends OmCOGLayer_base { static layerName: string; static defaultProps: { rescaleMin: null; rescaleMax: null; colormap: null; nodataOverride: null; }; constructor(props: AnyProps); } export type { OmTileData };