import { h } from 'preact';
export default function TextTrackButton({ textTracks, onChange }: {
    textTracks?: any[];
    onChange: any;
}): h.JSX.Element;
