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