UNPKG

react-pdf-builder

Version:
12 lines (11 loc) 423 B
import React from 'react'; import { ThemedPageProps } from '../../components/basics/ThemedPage'; export interface DocsPDFProps { children?: any; pageSize?: string; orientation?: 'portrait' | 'landscape'; pageProps?: ThemedPageProps; width?: number; height?: number; } export declare const DocsPDF: ({ children, pageSize, orientation, pageProps, width, height, }: DocsPDFProps) => React.JSX.Element;