import type { DetailedHTMLProps, VideoHTMLAttributes, MutableRefObject } from "react";
export interface BG {
    background?: string;
    filter?: string | {
        color?: string;
        opacity?: number;
    };
    fix?: boolean;
    img?: {
        src: number | string;
        style?: object;
    };
    video?: DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>;
    style?: object;
    children?: any;
    reference?: MutableRefObject<any>;
}
export default function BG(props: BG): import("react").JSX.Element;
//# sourceMappingURL=BG.d.ts.map