import type { PlaybackConfig } from '../../bundles/Types'; declare function attachVideoElement(video: HTMLVideoElement, container: HTMLElement): () => void; declare function detachVideoElement(video: HTMLVideoElement, container: HTMLElement): void; declare function createVideoElement(): HTMLVideoElement; declare function configureVideoElement(video: HTMLVideoElement, config: PlaybackConfig): void; declare const _default: { createVideoElement: typeof createVideoElement; attachVideoElement: typeof attachVideoElement; detachVideoElement: typeof detachVideoElement; configureVideoElement: typeof configureVideoElement; }; export default _default;