import React from "react";
interface Props {
    loader?: React.ReactNode;
    mimeType?: string;
    fileName?: string;
    src: string;
    onError?: (e: any) => void;
    autoPlay?: boolean;
    containerErrorStyle?: React.CSSProperties;
}
declare function FileViewer({ loader, mimeType, src, onError, fileName, autoPlay, containerErrorStyle, }: Props): JSX.Element;
export default FileViewer;

//# sourceMappingURL=types.d.ts.map
