import { JSX, ComponentInterface } from '../../../stencil-public-runtime'; export declare class Dropdown implements ComponentInterface { /** * The dropdown visibility */ isActive: boolean; /** * Align the dropdown to the right */ isRight: boolean; /** * Dropdown menu that appears above the dropdown button */ isUp: boolean; /** * The dropdown will show up when hovering the dropdown-trigger */ isHoverable: boolean; /** * Handle Trigger click action */ private handleTriggerClick; render(): JSX.Element; }