import { ColorRGB } from '@obliczeniowo/elementary/classes';
import { DrawingSvgInterface } from '@obliczeniowo/elementary/drawing';
import { MapboxLike } from './mapbox-like';
export interface ToOverrideLayer {
    layerId: string;
    fillOpacity?: string | number;
    fill?: ColorRGB;
    textColor?: string;
    haloColor?: string;
    draw?: {
        after: ((feature: any, map: MapboxLike, dc: DrawingSvgInterface) => void)[];
        before: ((feature: any, map: MapboxLike, dc: DrawingSvgInterface) => void)[];
    };
}
