UNPKG

442 BTypeScriptView Raw
1import { Color, Background, Typography } from './types';
2declare type Value = string | number;
3interface Return {
4 [key: string]: {
5 [key: string]: Value;
6 };
7}
8export declare const createReset: ({ typography }: {
9 typography: Typography;
10}) => Return;
11export declare const createGlobal: ({ color, background, typography, }: {
12 color: Color;
13 background: Background;
14 typography: Typography;
15}) => Return;
16export {};