import { OnInit } from '@angular/core'; export interface Item { url: string; text: string; isDivider?: boolean; } export declare class DropdownComponent implements OnInit { items: Item[]; buttonText: string; isOpen: any; isShowDropdown: boolean; constructor(); ngOnInit(): void; toggle(): void; }