export interface BaseToken { name: string; description?: string; category?: string; data: unknown; } export type Platforms = "web" | "reactNative";