import type { Dict } from '../types'; export declare class ClassInterface { protected static members: Dict; protected static keys?: Dict>; protected static callableMethods: Dict; static isCallValid(method: string, id: string | number, member: any): true | void; static init(): typeof ClassInterface; call(method: string, ...args: any): any; static get(id: string | number): any; static getAll(): Dict; static add(id: string | number, member: any): boolean; static remove(id: string | number): boolean; }