import { ReactNode } from 'react'; export declare type BackgroundType = 'main' | 'surface' | 'secondary'; export interface BackgroundContext { backgroundType: BackgroundType; backgroundClsx: string[]; text400Clsx: string[]; text500Clsx: string[]; text900Clsx: string[]; } export declare const BackgroundProvider: ({ backgroundType, children, }: { backgroundType: BackgroundType; children: ReactNode; }) => JSX.Element; export declare const useBackgroundContext: () => BackgroundContext;