/** * TryOnButton props for React Native. * * The visual component uses RN's Pressable/Text which requires * react-native in the build environment. Export props interface only — * consumers build the visual component in their RN app using useTryOn(). */ export interface TryOnButtonProps { label?: string; productName?: string; productPrice?: string; modelImageUrl?: string; onPress?: () => void; onResult?: (imageBase64: string) => void; disabled?: boolean; }