export interface UISegmentDropdownConfig {
    iconClasses?: string[];
    classes?: string[];
    label?: string;
    tooltip?: string;
    menuView: HTMLElement;
    stickyElement: HTMLElement;
    onLeftButtonClick(): void;
}
export interface UISegmentDropdown {
    elementRef: HTMLElement;
    leftButton: HTMLButtonElement;
    disabled: boolean;
    highlight: boolean;
    hide(): void;
    destroy(): void;
}
export declare function createSegmentDropdown(config: UISegmentDropdownConfig): UISegmentDropdown;
