export default function createLogicer(option: any): {
    goLeftPercent: (percent: any) => void;
    goRightPercent: (percent: any) => void;
    goNext: () => void;
    goPrev: () => void;
    player: {
        play(): void;
        stop(): void;
        setSpeed(speed: any): void;
    };
};
