import * as React from "react"; import "./styles.css"; /** * @deprecated This component will be removed from Griddo in the future. */ declare function CloudinaryBackgroundImage({ backgroundRepeat, backgroundSize, backgroundPosition, children, overlayColor, overlayOpacity, overlayTransition, ratio, publicId, src, customLazyClassName, lazy, ...props }: { [x: string]: any; backgroundRepeat?: string | undefined; backgroundSize?: string | undefined; backgroundPosition?: string | undefined; children: any; overlayColor?: null | undefined; overlayOpacity?: number | undefined; overlayTransition?: string | undefined; ratio: any; publicId: any; src: any; customLazyClassName?: string | undefined; lazy: any; }): React.JSX.Element; export { CloudinaryBackgroundImage };