import React from 'react'; export declare type BackgroundProps = { children: React.ReactNode; id?: string; height?: string; backgroundColour1?: string; backgroundColour2?: string; }; export declare const Background: ({ children, backgroundColour1, backgroundColour2, }: BackgroundProps) => import("@emotion/react/jsx-runtime").JSX.Element;