import type { HTMLVideoAttributes, HTMLSourceAttributes, HTMLTrackAttributes } from 'svelte/elements';
type Props = Omit<HTMLVideoAttributes, 'class'> & {
    class?: ClassName;
    sources?: HTMLSourceAttributes[];
    traks?: HTMLTrackAttributes[];
    loaded?: (x?: Event) => void;
};
declare const Video: import("svelte").Component<Props, {}, "">;
type Video = ReturnType<typeof Video>;
export default Video;
