import * as React from 'react';
import { StyledColumn } from '../../../AdaptableState/StyledColumnState';
import type { AdaptableApi } from '../../../types';
export declare const renderStyledColumnScopeSummary: (data: StyledColumn, api: AdaptableApi) => React.JSX.Element;
/** Used by the styled column list view (one-line "Rows: Data, Group, …"). */
export declare const collectIncludedRowKindLabels: (styledColumn: StyledColumn) => string[];
export declare const isValidStyledColumnScope: (data: StyledColumn, api: AdaptableApi) => true | string;
export type StyledColumnWizardScopeSectionProps = {
    onChange: (data: StyledColumn) => void;
    isNew: boolean;
};
export declare const StyledColumnWizardScopeSection: (props: StyledColumnWizardScopeSectionProps) => React.JSX.Element;
