import { default as React } from 'react'; interface GenesisProviderProperties { children: React.ReactNode; isDarkMode?: boolean; } /** * Supplies the Genesis theme, breakpoint, and toast contexts. * * NOTE: fonts are not loaded here — the Inter/Roboto Mono font faces live in the * package CSS bundle. Import it once at your app entry or components render in * the system fallback font: * * import "@gobolt/genesis/fonts.css"; */ export declare const GenesisProvider: React.FC; export default GenesisProvider;