import * as React from "react"; interface Props { innerRef?: (node: HTMLDivElement) => void; children: React.ReactNode; } declare const Background: (props: Props) => import("react/jsx-runtime").JSX.Element; export default Background;