/** * Copyright (c) 2026-present, Goldman Sachs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { type JSX } from 'react'; import { type UserSearchService } from '@finos/legend-shared'; import type { OrderSearchFormValues } from '../../stores/orders/OrderStore.js'; interface AdvancedOrderSearchPopoverProps { open: boolean; anchorEl: HTMLElement | null; onClose: () => void; onSearch: (filters: OrderSearchFormValues) => void; onClear: () => void; isSearching: boolean; hasActiveSearch: boolean; userSearchService: UserSearchService | undefined; } /** * Popover form (anchored to the search bar's "Advanced Search" tune icon) * used to search across the entire orders dataset via `POST /workflow/search/orders`, * rather than the current user's own open/closed orders. */ export declare const AdvancedOrderSearchPopover: (props: AdvancedOrderSearchPopoverProps) => JSX.Element; export {}; //# sourceMappingURL=AdvancedOrderSearchPopover.d.ts.map