/// <reference types="react" />
interface Props {
    mimeType: string;
    src: string;
    onError: (e: any) => void;
    onLoad: (value: boolean) => void;
    autoPlay: boolean;
}
export default function DriverSelector({ mimeType, src, onError, onLoad, autoPlay }: Props): JSX.Element;
export {};
