import { OnInit } from '@angular/core'; export interface IMenuItem { icon: string; color?: string; selected?: boolean; selectedBackground?: string; action?: any; } export interface IMenuSettings { position: 'bottom' | 'top'; backgroundColor?: string; } export declare class NgxMenuFloatComponent implements OnInit { menuItems: IMenuItem[]; settings: IMenuSettings; constructor(); ngOnInit(): void; selectItem(index: any): void; }