UNPKG

@pdfme/ui

Version:

TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!

10 lines (9 loc) 369 B
import React, { Ref } from 'react'; import GuidesComponent from '@scena/react-guides'; import { Size } from '@pdfme/common'; declare const _Guides: ({ paperSize, horizontalRef, verticalRef, }: { paperSize: Size; horizontalRef: Ref<GuidesComponent> | undefined; verticalRef: Ref<GuidesComponent> | undefined; }) => React.JSX.Element; export default _Guides;