export declare class Container {
    protected selector: string;
    constructor(selector: string);
    isExist(): boolean;
    getStyles<T>(allowValue: string[]): T | {};
    on(name: any, cb: (event: MouseEvent) => void): void;
    getAttr<T>(allowValue: string[]): T | {};
    getElement(): Element;
    getSelector(): string;
    private convertConfigs;
}
//# sourceMappingURL=container.d.ts.map