import { FC, CSSProperties } from 'react'; interface MediaProps { src: string; type: string; scale?: number; isCurrent?: boolean; className?: any; style?: CSSProperties; showAllPages?: boolean; } declare const Media: FC; export default Media;