import { FunctionalComponent } from "../../stencil-public-runtime"; interface Props { id: string; className?: string; label: string; icon?: string; accessibleText?: string; active: boolean; isOpen: boolean; badge: boolean; toggleRef: (el: HTMLButtonElement) => void; itemsRef: (el: HTMLDivElement) => void; onToggle: (e: Event) => void; } export declare const DuetHeaderDropdown: FunctionalComponent; export {};