import { DataResponse, Dimension, Measure } from '@embeddable.com/core'; import { Theme } from '../theme.types'; export type ChartCardMenuOptionOnClickProps = { title?: string; data?: DataResponse['data']; dimensionsAndMeasures?: (Dimension | Measure)[]; containerRef?: React.RefObject; theme: Theme; onCustomDownload?: (props: (props: ChartCardMenuOptionOnClickProps) => void) => void; }; export type ChartCardMenuOption = { value: string; labelKey: string; iconSrc?: string; onClick: (props: ChartCardMenuOptionOnClickProps) => void; }; export declare const defaultChartMenuProOptions: ChartCardMenuOption[]; //# sourceMappingURL=defaults.ChartCardMenu.constants.d.ts.map