interface SurfaceModel {
    temp: string;
}
interface ColorModel {
    r: string;
    g: string;
    b: string;
    a: string;
}
interface GateModel {
    classification: string;
    number: string;
    state: string;
}
interface MachineModel {
    classification: string;
    number: string;
    val: string;
}
interface PumpModel {
    temp: string;
    val: string;
}
declare const _default: {
    GateControl: (params: GateModel) => Promise<any>;
    MachineAni: (params: MachineModel) => Promise<any>;
    RiverSurface: (params: SurfaceModel) => Promise<any>;
    RiverColor: (params: ColorModel) => Promise<any>;
    WaterPump: (params: PumpModel) => Promise<any>;
};
export default _default;
