import React from 'react';
import { SelectColumn } from '../../../utils/synapseTypes/';
declare type ColumnSelectionProps = {
    headers?: SelectColumn[];
    isColumnSelected: string[];
    show?: boolean;
    onChange?: () => void;
    toggleColumnSelection: (name: string) => void;
    darkTheme?: boolean;
    facetAliases?: {};
};
export declare const ColumnSelection: React.FunctionComponent<ColumnSelectionProps>;
export {};
