import type { CategoricalMapper } from "./categorical_mapper"; import type { Factor } from "../ranges/factor_range"; import { Mapper } from "./mapper"; import type * as p from "../../core/properties"; import type { Arrayable } from "../../core/types"; import { HatchPatternType } from "../../core/enums"; export declare namespace CategoricalPatternMapper { type Attrs = p.AttrsOf; type Props = Mapper.Props & CategoricalMapper.Props & { patterns: p.Property; default_value: p.Property; }; } export interface CategoricalPatternMapper extends Mapper.Attrs, CategoricalMapper.Attrs, CategoricalPatternMapper.Attrs { } export declare class CategoricalPatternMapper extends Mapper { properties: CategoricalPatternMapper.Props; constructor(attrs?: Partial); v_compute(xs: Arrayable): Arrayable; } //# sourceMappingURL=categorical_pattern_mapper.d.ts.map