import { ObservableValue } from "azure-devops-ui/Core/Observable"; import { IListSelection } from "azure-devops-ui/List"; import { IListBoxItem } from "azure-devops-ui/ListBox"; import { Filter } from "azure-devops-ui/Utilities/Filter"; import * as React from "react"; import { IVssComponentProperties } from "../Types"; export declare const NameKey: string; export declare const TypeKey: string; export interface IFilterComponentProperties extends IVssComponentProperties { filter: Filter; keywordPlaceHolder: string; pickListPlaceHolder: string; filterToggled: ObservableValue; selection: IListSelection; listItems: IListBoxItem<{}>[]; addBottomPadding?: boolean; } export declare class KubeFilterBar extends React.Component { render(): React.ReactNode; }