import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; export interface MediaCardProps { kind: 'video' | 'audio'; /** Media URL; opened with Linking when pressed (unless onPress is provided). */ uri?: string; position?: 'left' | 'right'; label?: string; onPress?: () => void; style?: StyleProp; } /** * Lightweight, dependency-free media placeholder used when the optional * expo-video / expo-audio players are not installed. It is a real, usable * default: tapping plays the media in the system player via Linking (or fires * the supplied onPress). */ export declare const MediaCard: ({ kind, uri, position, label, onPress, style }: MediaCardProps) => React.JSX.Element; //# sourceMappingURL=MediaCard.d.ts.map