import { SnapTheme } from '@snapcss/themes'; export { configure } from '@snapcss/themes'; declare function clearCache(): void; declare function setDarkMode(isDark: boolean | null): void; interface SnapCSSOptions { theme?: Partial; } declare function init(options?: SnapCSSOptions): void; export { type SnapCSSOptions, clearCache, init, setDarkMode };