import type { HybridObject } from 'react-native-nitro-modules'; import type { BiologicalSex, BloodType, FitzpatrickSkinType, WheelchairUse } from '../types/Characteristics'; export interface CharacteristicTypeModule extends HybridObject<{ ios: 'swift'; }> { getBloodType(): BloodType; getDateOfBirth(): Date | undefined; getBiologicalSex(): BiologicalSex; getFitzpatrickSkinType(): FitzpatrickSkinType; getWheelchairUse(): WheelchairUse; getBloodTypeAsync(): Promise; getDateOfBirthAsync(): Promise; getBiologicalSexAsync(): Promise; getFitzpatrickSkinTypeAsync(): Promise; getWheelchairUseAsync(): Promise; }