@pdf-viewer/react
Version:
A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.
10 lines (9 loc) • 434 B
TypeScript
import { FC, PropsWithChildren } from 'react';
interface OtherToolContextValue {
activeDocumentProperties: boolean;
setActiveDocumentProperties: React.Dispatch<React.SetStateAction<boolean>>;
}
export declare const OtherToolContext: import('react').Context<OtherToolContextValue>;
export declare const useOtherToolContext: () => OtherToolContextValue;
export declare const OtherToolProvider: FC<PropsWithChildren>;
export {};