@ansible/ansible-ui-framework 2.4.329 → 2.4.331

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;