import { ButtonProps as UIButtonProps } from '../Button/Button'; import * as React from 'react'; export interface DropdownButtonTriggerProps extends Omit { /** * Label of the button. * Applied to standalone and nested dropdown buttons. * */ label: string; /** * Label of the button when menu opened. */ labelOpen?: string; /** * Position of the arrow icon of the button. * @default 'left' */ iconPosition?: 'left' | 'right'; /** * Wether the arrow icon of the button should indicate open state. * @default false * */ indicateOpen?: boolean; /** * Trigger type of the dropdown. * Applied to standalone dropdown buttons and all its nested dropdowns. * @default 'hover' */ trigger?: 'click' | 'hover'; } export declare const DropdownButtonTrigger: React.FC;