import { React } from "@lattice-ui/core"; import type { Theme, ThemeContextValue, ThemeProviderProps } from "./types"; export declare function ThemeProvider(props: ThemeProviderProps): React.JSX.Element; export declare function useTheme(): ThemeContextValue; export declare function useThemeValue(selector: (theme: Theme) => T): T;