import * as React from 'react';
interface IProps {
    Default?: boolean;
    Label?: string;
    Key: string;
}
/**
 * Wrapper to make any column configurable
 */
export default function ConfigurableColumn(props: React.PropsWithChildren<IProps>): JSX.Element;
export {};
