import { type IOptionLoader, type RecursivePartial, ValueWithRandom } from "tsparticles-engine"; import type { ITilt } from "../Interfaces/ITilt"; import { TiltAnimation } from "./TiltAnimation"; import { TiltDirection } from "../../TiltDirection"; import type { TiltDirectionAlt } from "../../TiltDirection"; export declare class Tilt extends ValueWithRandom implements ITilt, IOptionLoader { animation: TiltAnimation; direction: TiltDirection | keyof typeof TiltDirection | TiltDirectionAlt; enable: boolean; constructor(); load(data?: RecursivePartial): void; }