import type { ComponentProps, ReactNode } from 'react'; import type { BareEstimateProduct, EstimateProduct, Iteration } from '../types'; import { Item } from './Item'; type RegionProps = { shouldBeHidden?: boolean; priceText?: ReactNode; animated?: boolean; isFirstElement?: boolean; isLastElement?: boolean; productsCallback?: { add: (product: EstimateProduct) => void; remove: (product: BareEstimateProduct) => void; }; iteration?: Iteration; discount?: number; label: string; image: string; noBorder?: boolean; noPrice?: boolean; } & Pick, 'hideFromOverlay' | 'style'>; export declare const Region: import("react").MemoExoticComponent<({ label, image, shouldBeHidden, priceText, animated, isFirstElement, isLastElement, productsCallback, iteration, discount, noBorder, noPrice, hideFromOverlay, style, }: RegionProps) => import("react").JSX.Element>; export {}; //# sourceMappingURL=Region.d.ts.map