import React from "react"; import type { FilterPickerProps } from "./FilterPicker.types"; import { FilterPickerAction } from "./components/FilterPickerAction"; import { FilterPickerOption as FilterPickerOptionComponent } from "./components/FilterPickerOption/FilterPickerOption"; import { FilterPickerActivator } from "./components/FilterPickerActivator"; export declare function FilterPicker(props: FilterPickerProps): React.JSX.Element; export declare namespace FilterPicker { var Activator: typeof FilterPickerActivator; var Action: typeof FilterPickerAction; var Option: typeof FilterPickerOptionComponent; }