import type { ThemeState } from '@atlaskit/tokens/theme-config';
export type Theme = Omit<ThemeState, 'colorMode' | 'contrastMode'>;
/**
 * __Theme context__
 */
export declare const ThemeContext: import('react').Context<Theme | undefined>;
/**
 * __Set theme context__
 */
export declare const SetThemeContext: import('react').Context<((value: Partial<Theme>) => void) | undefined>;
