/** * Copyright (c) 2020-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 LegendQueryableElement } from '../../stores/data-space/DataProductQueryCreatorStore.js'; /** * Resolves a {@link LegendQueryableElement} from the current route parameters. * * Data-product routes provide `dataProductPath`, `accessType` and `accessId`. * Legacy data-space routes provide `dataSpacePath` and `executionContext`. * The DEFAULT route (`/`) provides no params – returns `undefined`. */ export declare const resolveQueryableElement: (dataProductParams: Readonly>, dataSpaceParams: Readonly>, runtimePath: string | undefined, classPath: string | undefined) => LegendQueryableElement | undefined; /** * Unified query creator component used for data-product routes, * legacy data-space routes, and the default (`/`) route. * * Because every route renders the same component type, React Router * reconciles rather than unmounting when the URL changes, which prevents * the store from being recreated and `initialize()` from firing twice. */ export declare const QueryCreator: (() => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; //# sourceMappingURL=DataProductQueryCreator.d.ts.map