import type { FC } from 'react';
type Props = {
    uri: string;
    onFailure?: (e: Error) => void;
    currentFilename?: string;
};
export type DocumentState = {
    loading: boolean;
    filename?: string;
    error?: string;
    contentType?: string;
};
declare const DocumentViewer: FC<Props>;
export default DocumentViewer;
//# sourceMappingURL=DocumentViewer.d.ts.map