@ansible/ansible-ui-framework 2.4.330 → 2.4.331

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,10 +6,3 @@ export interface IToolbarMultiSelectFilter extends ToolbarFilterCommon {
6
6
  options: PageSelectOption<string>[];
7
7
  placeholder: string;
8
8
  }
9
- export declare function ToolbarMultiSelectFilter(props: {
10
- id?: string;
11
- placeholder: string;
12
- filterValues: string[] | undefined;
13
- setFilterValues: (setter: (prevValues: string[] | undefined) => string[] | undefined) => void;
14
- options: PageSelectOption<string>[];
15
- }): import("react/jsx-runtime").JSX.Element;
@@ -7,11 +7,3 @@ export interface IToolbarSingleSelectFilter extends ToolbarFilterCommon {
7
7
  isRequired?: boolean;
8
8
  placeholder: string;
9
9
  }
10
- export declare function ToolbarSingleSelectFilter(props: {
11
- id?: string;
12
- placeholder: string;
13
- filterValues: string[] | undefined;
14
- setFilterValues: (setter: (prevValues: string[] | undefined) => string[] | undefined) => void;
15
- options: PageSelectOption<string>[];
16
- isRequired?: boolean;
17
- }): import("react/jsx-runtime").JSX.Element;