import React from 'react';
interface ControlsProps {
    loading: boolean;
    onPlay: () => void;
    onPause: () => void;
    onStop: () => void;
    onTimeChange: (foo: any) => void;
    position: number;
    duration: number;
}
export declare const BasicControls: React.FunctionComponent<ControlsProps>;
interface StereoControlProps {
    onChange: (foo: any) => void;
    value: number;
}
export declare const StereoControl: React.FunctionComponent<StereoControlProps>;
interface VolumeControlProps {
    onChange: (foo: any) => void;
    value: number;
}
export declare const VolumeControl: React.FunctionComponent<VolumeControlProps>;
export {};
