import React from "react"; import chroma from "chroma-js"; import { Elevation, Theme } from "./theme"; export interface ThemeProviderProps { theme?: Theme; } export declare const ThemeContext: React.Context; export declare const useTheme: () => Theme; export declare const useSurfaceScale: () => chroma.Scale; export declare const useSurfaceColor: (elevation: Elevation) => string; declare const ThemeProvider: React.FC; export default ThemeProvider;