import { Config } from 'react-native-jw-media-player'; import { ChoiceItem } from '../../atom/select-modal/index.native'; declare type Url = string; declare type VideoMimeType = 'video/mp4' | 'application/kontiki' | 'application/jwplayer' | 'application/youtube' | 'application/omniPlayer' | 'application/uptale' | 'application/vimeo'; declare type ResourceMimeType = 'audio/acc' | 'image/jpeg' | 'image/png' | 'application/pdf' | VideoMimeType; export declare type Source = { _id?: string; mimeType?: ResourceMimeType; url: Url; videoId?: string; }; export declare type MediaType = 'img' | 'audio' | 'video' | 'pdf'; export declare type Media = { type?: MediaType; description?: string; loading?: boolean; mimeType?: ResourceMimeType; mediaRef?: string; _id?: string; jwpOptions?: { config?: Config; playlist?: Array<{ file: string; tracks: [{ file: string; kind: 'thumbnails'; }]; }>; playerId?: string; playerScript?: string; licenseKey?: string; customProps?: { playbackRateControls: boolean; playbackRates: number[]; preload: 'auto'; autostart: 'true' | 'false'; width: string; height: string; visualplaylist: boolean; nextUpDisplay: boolean; }; }; mediaUrl?: Url; url?: Url; subtitles?: Array; posters?: Array; src?: Array; poster?: string; videoId?: string; onClick?: () => void; onPlay?: () => void; onPause?: () => void; onResume?: () => void; onEnded?: () => void; }; export declare type QuestionType = 'qcm' | 'qcmGraphic' | 'slider' | 'qcmDrag' | 'basic' | 'template'; declare type ChoiceBase = { _id: string; value?: string; name?: string; label?: string; }; export declare type SelectableChoice = { _id: string; label: string; selected: boolean; onPress: (value?: string) => void; media?: Media; }; export declare type TemplateTextChoice = { type: 'text'; _id: string; name: string; value: string; label: string; selected: boolean; }; export declare type TemplateListOfChoices = { type: 'select'; _id: string; name: string; value: string; label: string; items: Array; }; export declare type Choice = ChoiceBase | SelectableChoice | TemplateListOfChoices | TemplateTextChoice; export {}; //# sourceMappingURL=types.d.ts.map