UNPKG

@pdf-viewer/react

Version:

A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.

11 lines (10 loc) 403 B
import { HTMLAttributes } from 'react'; interface Props extends HTMLAttributes<HTMLDivElement> { toolbarRef?: HTMLDivElement | null; className?: string; style?: React.CSSProperties; } export declare const LayoutContainer: import('react').ForwardRefExoticComponent<Props & { children?: import('react').ReactNode | undefined; } & import('react').RefAttributes<HTMLDivElement>>; export {};