import type { ReactNode } from 'react'; export interface Theme { colorPrimary: string; colorOnPrimary: string; colorSurface: string; colorOnSurface: string; colorBorder: string; radiusMd: string; } export declare const defaultTheme: Theme; export declare function useTheme(): Theme; export interface ThemeProviderProps { theme?: Partial; children: ReactNode; } export declare function ThemeProvider({ theme, children }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=theme.d.ts.map