@pdf-viewer/react
Version:
The PDF Viewer component for React and Next.js
6 lines (5 loc) • 330 B
TypeScript
import { FC, PropsWithChildren } from 'react';
import { ConfigContextType } from '../utils/types';
export declare const ConfigContext: import('react').Context<ConfigContextType>;
export declare const useConfigContext: () => ConfigContextType;
export declare const ConfigContextProvider: FC<PropsWithChildren & ConfigContextType>;