import { SiteFontConfig } from './theme/fonts'; import type { AgencyPreferences } from './models'; import { GlobalConfig } from './state'; import { JSX, PropsWithChildren } from 'react'; export default function CssVariables({ fonts, preferences, globalConfig, theme, admin, themeCssVersionHash, children, }: PropsWithChildren & { fonts?: SiteFontConfig; preferences: Partial | null; globalConfig: GlobalConfig; theme?: string; admin?: boolean; themeCssVersionHash: string; }): JSX.Element | null; //# sourceMappingURL=css-variables.d.ts.map