import { Client } from "../.."; import { Structures } from "../structures"; declare type ContextType = keyof Structures | string | 'unknown'; export interface ContextBase { name: string; type: ContextType; client: Client; } export {};