import type { ColumnOptions, SharedColumnOptions } from './types';
type Options = {} & SharedColumnOptions<boolean>;
type FilterParameters = {
    selection: Set<boolean>;
    description: string;
    exclude: boolean;
};
type BooleanColumn = ColumnOptions<boolean, FilterParameters>;
declare function BooleanColumn(options: Options): BooleanColumn;
export default BooleanColumn;
