import { ComponentChild, VNode, h } from 'preact'; interface PDFDownloadLinkProps { fileName: string; document: VNode; class?: string; style?: h.JSX.CSSProperties; children?: ComponentChild | ((props: { loading: boolean; error: unknown; }) => ComponentChild); } export declare const PDFDownloadLink: (props: PDFDownloadLinkProps) => h.JSX.Element; export {};