interface Props {
    url: string;
    urlLowRes?: string | null;
    objectFit: string;
    objectPosition: string;
    poster?: string | null;
    mute: boolean;
    loop: boolean;
}
declare const BackgroundVideoSurface: import("svelte").Component<Props, {}, "">;
type BackgroundVideoSurface = ReturnType<typeof BackgroundVideoSurface>;
export default BackgroundVideoSurface;
