///
import { ColumnProps } from 'antd/lib/table/interface';
interface IProps {
cacheId: string;
columns: ColumnProps[];
onChange: (columns: ColumnProps[]) => void;
}
declare const _default: ({ cacheId, columns, onChange }: IProps) => JSX.Element;
export default _default;