/**
 * 动作检测
 * http://h5.alibaba-inc.com/api/WindVane-API.html#%E5%8A%A8%E4%BD%9C%E6%A3%80%E6%B5%8B-WVMotion
 */
export interface MotionRule {
    blow?: boolean;
    gyro?: boolean;
    shake?: boolean;
}
export default function generate(rule: MotionRule): {
    blow: {
        listen: (cb?: (pass: string) => void) => any;
        stop: () => any;
    };
};
