import type { ReactNode } from 'react';
export declare const BackgroundWrapper: ({ children, backgroundColor, }: {
    children: ReactNode;
    backgroundColor: string;
}) => import("react/jsx-runtime").JSX.Element;
export declare const Surface: ({ children, backgroundColor, }: {
    children: ReactNode;
    backgroundColor: string;
}) => import("react/jsx-runtime").JSX.Element;
