import { type IOptionLoader, type IRgba, type RecursivePartial } from "@tsparticles/engine";
import type { ICanvasMaskPixels } from "../Interfaces/ICanvasMaskPixels.js";
export declare class CanvasMaskPixels implements ICanvasMaskPixels, IOptionLoader<ICanvasMaskPixels> {
    offset: number;
    filter: (pixel: IRgba) => boolean;
    load(data?: RecursivePartial<ICanvasMaskPixels>): void;
}
