import type { ReactElement } from 'react';
export type BackgroundProviderProps = {
    type: 'light' | 'dark';
    children: ReactElement;
};
/** Enforce background "lightness" without applying a background color. */
export declare const BackgroundProvider: ({ type, children, }: BackgroundProviderProps) => import("@emotion/react/jsx-runtime").JSX.Element | null;
