import * as React from "react"; import * as trcSheet from 'trc-sheet/sheet'; export interface IColumnSelectorProps { Include?: (ci: trcSheet.IColumnInfo) => boolean; Value?: string | trcSheet.IColumnInfo; OnChange: (ci: trcSheet.IColumnInfo) => void; } export declare class ColumnSelector extends React.Component { static contextType: React.Context; constructor(props: any); private include; private getValues; private getValue; handleChange(event: any): void; render(): JSX.Element; }