import * as React from 'react'; import tokens, { Theme, ThemeColors } from '../tokens'; declare const ThemeProvider: { ({ children, reset, theme, ...props }: React.HTMLAttributes & { children?: any; reset?: boolean; theme?: any; }): React.ReactElement React.ReactElement React.Component)>) | (new (props: any) => React.Component)>; displayName: string; defaultProps: { reset: boolean; theme: Theme; }; }; declare function useTheme(): Theme; export { useTheme, tokens as theme, ThemeProvider as default, Theme, ThemeColors, };