import { Storage } from './storage';
export declare class Events extends Storage {
    private listeners;
    on(name: string, listener: Function): void;
    off(name: string, listener: Function): void;
    emit(name: string, ...args: any[]): void;
}
export interface Events {
    config: Events.Config;
}
export declare namespace Events {
    interface Config extends Storage.Config {
    }
}
