import { default as React, Dispatch, FC, PropsWithChildren } from 'react'; import { IMainState } from '../../../store/mainStateReducer'; import { PDFActions } from './actions'; import { IPDFState } from './reducer'; declare const PDFContext: React.Context<{ state: IPDFState; dispatch: Dispatch; }>; declare const PDFProvider: FC>; export { PDFContext, PDFProvider };