/** * 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'; /** * Category chip shared by the order profile / owned terminal detail table rows. */ export declare const CategoryChip: (props: { category: string; isTerminal: boolean; }) => JSX.Element; /** * Shared `DialogTitle` header for the order profile detail and owned terminal * detail modals: an icon + product name row with a close button, followed by * a summary line showing item counts and total price. */ export declare const OrderProfileModalHeader: (props: { titleId: string; productName: string; summaryLine: string; totalPrice: number; onClose: () => void; }) => JSX.Element; //# sourceMappingURL=OrderProfileModalHeader.d.ts.map