1export interface LoggerOptions {
2    id: string;
3    enabled: boolean;
4}
5export declare class Logger {
6    static instances: {
7        [key: string]: Logger;
8    };
9    private readonly id;
10    private readonly enabled;
11    private readonly start;
12    constructor({ id, enabled }: LoggerOptions);
13    debug(...args: any): void;
14    getTime(): number;
15    static create(options: LoggerOptions): void;
16    static destroy(id: string): void;
17    static getInstance(id: string): Logger;
18    info(...args: any): void;
19    error(...args: any): void;
20}
21