import { OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { ActionBarLayerAction } from '../model/action-bar-layer.model';
import { ContextualActionBarService } from '../ngx-contextual-action-bar.service';
export declare class DmlActionsOverflowMenuComponent implements OnInit {
    private service;
    group: string;
    private c;
    layer$: Observable<{
        id: string;
        actions: ActionBarLayerAction[];
    } | undefined>;
    private _resizeEvent$;
    private width;
    visible$: Observable<ActionBarLayerAction[]>;
    menu$: Observable<ActionBarLayerAction[]>;
    constructor(service: ContextualActionBarService);
    handleActionClick(id: string, action: ActionBarLayerAction): void;
    ngOnInit(): void;
}
