import type { TranslateFn } from "../../i18n"; import type { ViewState, SizeGuideField } from "../types"; export declare function EstimationReviewView({ productImage, productTitle, estimatedValues, estimationLoading, dynamicFields, formRef, formGender, sizingUnit, setSizingUnit, formKey, setFormKey, updateField, setSizingMethod, setSizingLoading, setView, submitSizing, t, }: { productImage: string; productTitle: string; estimatedValues: Record | null; estimationLoading: boolean; dynamicFields: SizeGuideField[]; formRef: React.MutableRefObject>; formGender: string; sizingUnit: string; setSizingUnit: (u: string) => void; formKey: number; setFormKey: React.Dispatch>; updateField: (key: string, val: string) => void; setSizingMethod: (m: "exact" | "quick" | null) => void; setSizingLoading: (v: boolean) => void; setView: (v: ViewState) => void; submitSizing: (mode: "exact" | "quick") => void; t: TranslateFn; }): import("react/jsx-runtime").JSX.Element;