import type { CSSProperties } from 'react'; import type { BareEstimateProduct, EstimateProduct, Iteration } from '../types'; type RegionProps = { shouldBeHidden?: boolean; priceText?: string; 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; style?: CSSProperties; }; export declare const Zone: import("react").MemoExoticComponent<({ label, image, shouldBeHidden, priceText, animated, isFirstElement, isLastElement, productsCallback, iteration, discount, noBorder, noPrice, style, }: RegionProps) => import("react").JSX.Element>; export {}; //# sourceMappingURL=Zone.d.ts.map