@ultraviolet/plus
Version:
Ultraviolet Plus
21 lines (20 loc) • 801 B
TypeScript
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;
};
export declare const Zone: import("react").MemoExoticComponent<({ label, image, shouldBeHidden, priceText, animated, isFirstElement, isLastElement, productsCallback, iteration, discount, noBorder, noPrice, }: RegionProps) => import("@emotion/react/jsx-runtime").JSX.Element>;
export {};