import * as React from 'react'; export interface ChartMoreOptionsButtonProps { /** * Accessible label for the trigger button. * @default "More options" (i18n overridable) */ ariaLabel?: string; /** Menu items rendered inside the dropdown (DropdownMenuItem, DropdownDivider, etc.) */ children: React.ReactNode; /** Icon element rendered inside the trigger button */ icon: React.ReactElement; /** * If true, the dropdown uses inverse (dark) styling. * @default false */ isInverse?: boolean; } export declare function ChartMoreOptionsButton({ ariaLabel, children, icon, isInverse, }: ChartMoreOptionsButtonProps): React.JSX.Element;