import { ExternalInteractorBase, type IInteractivityData, type IModes, type InteractivityParticle, type Modes } from "@tsparticles/plugin-interactivity";
import { type RecursivePartial } from "@tsparticles/engine";
import type { IPushMode, PushContainer, PushMode } from "./Types.js";
export declare class Pusher extends ExternalInteractorBase<PushContainer> {
    handleClickMode: (mode: string, interactivityData: IInteractivityData) => void;
    readonly maxDistance = 0;
    constructor(container: PushContainer);
    clear(): void;
    init(): void;
    interact(): void;
    isEnabled(interactivityData: IInteractivityData, particle?: InteractivityParticle): boolean;
    loadModeOptions(options: Modes & PushMode, ...sources: RecursivePartial<(IModes & IPushMode) | undefined>[]): void;
    reset(): void;
}
