import { CreateColorMatrixProps } from '../../types'; import { ColorMatrix } from '../../utils'; /** * Create `ColorMatrix` for the layer. * Layer should not create `ColorMatrix` by themselves. * @remarks * This method is to ensure correct color matching when legend filtering. */ export declare function createColorMatrix(props: CreateColorMatrixProps): ColorMatrix;