import { default as React } from 'react'; interface MediaComponentProps { url: string; isVideo?: boolean; playing?: boolean; loop?: boolean; controls?: boolean; volume?: number; muted?: boolean; playbackRate?: number; width?: string; height?: string; style?: React.CSSProperties; } declare const MediaComponent: React.FC; export default MediaComponent; export type { MediaComponentProps }; //# sourceMappingURL=MediaComponent.d.ts.map