import React from 'react';
export interface BackgroundProps {
    children?: React.ReactNode;
    src?: string;
    alt?: string;
    className?: string;
}
declare const Background: React.FC<BackgroundProps>;
export default Background;
