import type { FC } from 'react';
import type { IColumnType } from '../../typings/table';
export interface IColumnSettingContentProps {
    sortColumns: IColumnType<any>[];
    defaultColumns: IColumnType<any>[];
    onOk?: (newSortColumns: IColumnType<any>[]) => void;
}
declare const ColumnSettingContent: FC<IColumnSettingContentProps>;
export default ColumnSettingContent;
