import type { Handler } from './type'; export declare class Handlers { protected items: Record; constructor(items?: Record); protected init(): void; get(): Record; get(id: string): Handler | undefined; set(items: Record): void; set(id: string, handler: Handler): void; unset(id: string | string[]): void; }