import { type MouseEventHandler, type PropsWithChildren, type ReactElement, type ReactNode } from 'react'; type ChartActionsMenuAsyncProps = { isOpen: boolean; defaultActions?: ReactNode; header?: ReactElement | null; onActionSelected?: MouseEventHandler; actions: (() => Promise>) | undefined; delay?: number; hasActions: boolean; }; export declare const ChartActionsMenuAsync: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=ChartActionsMenuAsync.d.ts.map