/** * Copyright (c) 2023 Google LLC * SPDX-License-Identifier: MIT */ import React from 'react'; import type { InternalFilterProps } from '../../types/filter_props'; /** * Visual filters that can take the form of radio buttons, checkboxes, etc. */ export declare const ControlFilter: ({ ast, expressionType, validationMessage, dispatchConfigTypeChange, ...adapterProps }: InternalFilterProps) => React.JSX.Element | null;