import type { IBubble } from "./IBubble";
import type { IConnect } from "./IConnect";
import type { IGrab } from "./IGrab";
import type { IPush } from "./IPush";
import type { IRemove } from "./IRemove";
import type { IRepulse } from "./IRepulse";
import type { ISlow } from "./ISlow";
import type { ITrail } from "./ITrail";
import type { IAttract } from "./IAttract";
import type { ILight } from "./ILight";
export interface IModes {
    attract: IAttract;
    bubble: IBubble;
    connect: IConnect;
    grab: IGrab;
    light: ILight;
    push: IPush;
    remove: IRemove;
    repulse: IRepulse;
    slow: ISlow;
    trail: ITrail;
}
