import type { ScopeVariants } from '../Provider'; export interface TokenType { name: symbol; options: TokenOptions; isToken: true; isModernToken: true; toString(): string; } export interface TokenOptions { multi?: boolean; scope?: ScopeVariants; } //# sourceMappingURL=createToken.h.d.ts.map