import * as React from 'react';
import { CustomSort } from '../../../AdaptableState/CustomSortState';
import { AdaptableApi } from '../../../Api/AdaptableApi';
export type CustomSortColumnWizardSectionProps = {
    onChange: (data: CustomSort) => void;
    isNew: boolean;
    allCustomSorts: CustomSort[];
};
export declare const renderCustomSortColumn: (data: CustomSort, api: AdaptableApi) => React.JSX.Element;
export declare const isValidCustomSortColumn: (data: CustomSort, allCustomSorts: CustomSort[]) => true | string;
export declare const CustomSortColumnWizardSection: (props: CustomSortColumnWizardSectionProps) => React.JSX.Element;
