import { PopupDirective } from '../directives'; import { Popup } from '../directives'; import * as i0 from "@angular/core"; /** * @TailwindNG Dropdown component interface. */ export interface Dropdown extends Popup { /** * Close the dropdown when the user clicks outside of it. */ closeOnBlur?: boolean; } export declare const DROPDOWN_CONFIG: import("@angular/core").InjectionToken; export declare abstract class DropdownBase extends PopupDirective { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Checks if the component is a Dropdown. * If so, you can safely access the Dropdown members inside this block scope. */ export declare function isDropdown(component: unknown): component is Dropdown;