import * as React from 'react'; import { CustomSort } from '../../../AdaptableState/CustomSortState'; export type CustomSortValuesWizardSectionProps = { onChange: (data: CustomSort) => void; }; export declare const isValidCustomSortOrder: (data: CustomSort) => true | string; export declare const renderCustomSortValuesSummary: (data: CustomSort) => React.JSX.Element; export declare const CustomSortValuesWizardSection: (props: CustomSortValuesWizardSectionProps) => React.JSX.Element;