1 | export declare type colorPaletteType = '8' | '16' | '24';
|
2 | export declare type Elevation = 'e100' | 'e200' | 'e300' | 'e400' | 'e500';
|
3 | export declare type ThemeModes = 'light' | 'dark';
|
4 | export interface Theme {
|
5 | mode: ThemeModes;
|
6 | }
|
7 | export interface GlobalThemeTokens extends Theme {
|
8 | }
|
9 | export declare type ThemeProps = AtlaskitThemeProps | CustomThemeProps | NoThemeProps;
|
10 | export interface CustomThemeProps {
|
11 | theme: Theme;
|
12 | [index: string]: any;
|
13 | }
|
14 | export interface AtlaskitThemeProps {
|
15 | theme: {
|
16 | __ATLASKIT_THEME__: Theme;
|
17 | };
|
18 | [index: string]: any;
|
19 | }
|
20 | export interface NoThemeProps {
|
21 | [index: string]: any;
|
22 | }
|
23 | export declare type DefaultValue = string | number;
|
24 | export declare type ThemedValue<V = DefaultValue> = (props?: ThemeProps) => V | '';
|