import type { TranslateFn } from "../../i18n"; /** * Photo guide screen — mirrors the inline `showPhotoGuide` overlay inside * SizeResultView. Used for try-on flows that don't have a size result yet * (e.g. NoChartView's "See how it looks on you"). * * Desktop: split — photo upload on the left, Do/Don't/Pro-Tip on the right. * Mobile: stacked — title + preview + checklist + START TRY-ON. */ export declare function PhotoGuideView({ measurementType, apiUrl, apiKey, onBack, onSubmit, t, }: { measurementType?: "body" | "face" | "head" | "foot" | "wrist"; /** Backend URL for the age-check call (passed through to PhotoUploadZone). */ apiUrl?: string; apiKey?: string; onBack: () => void; onSubmit: (file: File) => void; t: TranslateFn; }): import("react/jsx-runtime").JSX.Element;