1 | export declare const FLATTENED = "__FLATTENED__";
|
2 | export declare const CHANNEL = "__ATLASKIT_THEME__";
|
3 | export declare const DEFAULT_THEME_MODE = "light";
|
4 | export declare const THEME_MODES: string[];
|
5 | export declare const borderRadius: () => number;
|
6 | export declare const gridSize: () => number;
|
7 | export declare const fontSize: () => number;
|
8 | export declare const fontSizeSmall: () => number;
|
9 | export declare const fontFamily: () => string;
|
10 | export declare const codeFontFamily: () => string;
|
11 | export declare const focusRing: (color?: string, outlineWidth?: number) => string;
|
12 | export declare const noFocusRing: () => string;
|
13 | export declare const layers: {
|
14 | card: () => number;
|
15 | dialog: () => number;
|
16 | navigation: () => number;
|
17 | layer: () => number;
|
18 | blanket: () => number;
|
19 | modal: () => number;
|
20 | flag: () => number;
|
21 | spotlight: () => number;
|
22 | tooltip: () => number;
|
23 | };
|
24 | export declare const assistive: () => import("styled-components").InterpolationValue[];
|
25 | export declare const skeletonShimmer: () => {
|
26 | css: {
|
27 | backgroundColor: string;
|
28 | backgroundImage: string;
|
29 | backgroundRepeat: string;
|
30 | backgroundSize: string;
|
31 | animationDuration: string;
|
32 | animationFillMode: string;
|
33 | animationIterationCount: string;
|
34 | animationTimingFunction: string;
|
35 | };
|
36 | keyframes: {
|
37 | '0%': {
|
38 | backgroundPosition: string;
|
39 | };
|
40 | '100%': {
|
41 | backgroundPosition: string;
|
42 | };
|
43 | };
|
44 | };
|