import type { Content, TDocumentDefinitions } from 'pdfmake/interfaces'; import type { Readable, Writable } from 'svelte/store'; export declare const contextKey = "pdfmake-document"; export interface RendererContext { document: Writable; nodes: Writable; } export declare function getDocument(): Readable; export declare function getDocumentNodes(): Readable;