import type { CSSProperties, ReactNode } from 'react'; export type OfficeTheme = 'light' | 'dark' | 'system'; export interface OfficeSurfaceProps { className?: string; style?: CSSProperties; theme?: OfficeTheme; } export declare function OfficeSurface({ children, className, style, theme, }: OfficeSurfaceProps & { children: ReactNode; }): import("react").JSX.Element;