export declare type Token = T | ((theme: Theme) => T); export declare type MakeStaticToken = T extends (...args: any[]) => any ? MakeStaticToken> : T; export declare type Tokens = { [K in keyof T]: Token; }; export declare type StaticTokens = { [K in keyof T]: MakeStaticToken; };