import { CardConfig } from './card-config.model';
export interface AxisChartConfig {
    chartIdentifier?: string;
    xAxisTitle?: string;
    yAxisTitle?: string;
    chartMenu?: Array<{
        text: string;
        action: () => void;
        icon?: string | {
            code: string;
            color?: string;
        };
    }>;
    chartWidth?: string;
    cardConfig?: CardConfig;
}
//# sourceMappingURL=axis-chart-config.model.d.ts.map