/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { SandDance } from '@msrvida/sanddance-react'; export interface Props { allColumns: SandDance.types.Column[]; exclusions: string[]; toggleExclusion: (columnName: string) => void; } export declare function ToggleColumns(props: Props): JSX.Element;