import type { KeyboardEvent, MouseEvent, ReactNode } from 'react';
interface ColumnMenuButtonProps {
    onClick?: (e: MouseEvent<HTMLElement> | KeyboardEvent<HTMLElement>) => void;
    onEscape?: (e: KeyboardEvent) => void;
    tabIndex?: number;
    isExpanded?: boolean;
    menuId?: string;
    disabled?: boolean;
    'aria-label'?: string;
    icon?: ReactNode;
}
export default function ColumnMenuButton({ onClick, onEscape, tabIndex, isExpanded, menuId, disabled, 'aria-label': ariaLabel, icon, }: ColumnMenuButtonProps): import("react/jsx-runtime").JSX.Element;
export {};
