export type FloatingInputReferenceImage = { /** Stable identifier — also used as the selection key */ id: string; /** Image URL rendered as the thumbnail background */ url: string; alt: string; }; export type FloatingInputReferenceImages = { /** Label rendered above the thumbnails (e.g. "Select the correct reference photo") */ label: string; /** Thumbnails shown in the footer; one is selected at a time */ items: FloatingInputReferenceImage[]; /** Currently selected image id */ selectedId: string; /** Called when the user picks a different reference image */ onSelect: (id: string) => void; }; //# sourceMappingURL=types.d.ts.map