captide
Version:
Get millions of financial documents into your AI app 🚀
10 lines (9 loc) • 378 B
TypeScript
import React from 'react';
import { DocumentViewerContextValue, FetchDocumentFn } from '@types';
interface DocumentViewerProviderProps {
children: React.ReactNode;
fetchDocumentFn?: FetchDocumentFn;
}
export declare const DocumentViewerProvider: React.FC<DocumentViewerProviderProps>;
export declare const useDocumentViewer: () => DocumentViewerContextValue;
export {};