import { ThemeType, ThemeWithDarkModeType, THEMES } from "./tokens"; type ThemeOptions = keyof typeof THEMES; interface ThemeProps { children?: React.ReactNode; theme?: ThemeOptions; } export declare const Theme: React.FC; /** * Only use this if it's are absolutely neccessary, and only in tests. */ export declare const _test_THEMES: { v3: ThemeType; v3light: ThemeWithDarkModeType; v3dark: ThemeWithDarkModeType; }; export {};