import * as React from 'react';
import { StyledColumn } from '../../../AdaptableState/StyledColumnState';
/**
 * The title displayed in the wizard header. Switches from "Styled
 * Column" to the specific type ("Gradient Column", "Percent Bar
 * Column", …) once a type has been picked, so the user always knows
 * which kind of column they're configuring.
 */
export declare const getStyledColumnWizardTitle: (data: StyledColumn) => string;
export declare const renderStyledColumnSettingsSummary: (data: StyledColumn) => React.JSX.Element;
/**
 * Backwards-compatible export: the wizard previously imported
 * `renderStyledColumnTypeSummary`. The settings step now also covers Name,
 * but to keep external imports happy we re-export under the old alias.
 */
export declare const renderStyledColumnTypeSummary: (data: StyledColumn) => React.JSX.Element;
export interface StyledColumnWizardTypeSectionProps {
    onChange: (styledColumn: StyledColumn) => void;
}
export declare const StyledColumnWizardTypeSection: React.FunctionComponent<StyledColumnWizardTypeSectionProps>;
