import { default as React, FunctionComponent, SyntheticEvent } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface AudioProps extends BasicComponent { src: string; muted: boolean; autoPlay: boolean; loop: boolean; preload: string; type: string; onBack: (e: HTMLAudioElement) => void; onForward: (e: HTMLAudioElement) => void; onPause: (e: SyntheticEvent) => void; onEnd: (e: SyntheticEvent) => void; onMute: (e: HTMLAudioElement) => void; onCanPlay: (e: SyntheticEvent) => void; } export declare const Audio: FunctionComponent & React.HTMLAttributes>;