import * as React from 'react'; import { AdaptableWizardStepProps, AdaptableWizardStep } from '../../../Wizard/Interface/IAdaptableWizard'; import { CategoryChartDefinition } from '../../../../PredefinedConfig/RunTimeState/ChartState'; export interface CategoryChartSettingsWizardProps extends AdaptableWizardStepProps { ChartNames: string[]; } export interface CategoryChartSettingsWizardState { Name: string; Description: string; ErrorMessage: string; VisibleRowsOnly: boolean; } export declare class CategoryChartSettingsWizard extends React.Component implements AdaptableWizardStep { constructor(props: CategoryChartSettingsWizardProps); render(): any; onChartNameChange(event: React.FormEvent): void; onChartDescriptionChange(event: React.FormEvent): void; private onVisibleRowsChanged; canNext(): boolean; canBack(): boolean; Next(): void; Back(): void; GetIndexStepIncrement(): number; GetIndexStepDecrement(): 1 | 2; }