UNPKG

1.49 kBTypeScriptView Raw
1export declare const FLATTENED = "__FLATTENED__";
2export declare const CHANNEL = "__ATLASKIT_THEME__";
3export declare const DEFAULT_THEME_MODE = "light";
4export declare const THEME_MODES: string[];
5export declare const borderRadius: () => number;
6export declare const gridSize: () => number;
7export declare const fontSize: () => number;
8export declare const fontSizeSmall: () => number;
9export declare const fontFamily: () => string;
10export declare const codeFontFamily: () => string;
11export declare const focusRing: (color?: string, outlineWidth?: number) => string;
12export declare const noFocusRing: () => string;
13export 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};
24export declare const assistive: () => import("styled-components").InterpolationValue[];
25export 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};