import { SvelteComponent } from "svelte"; import type { ContentSection } from 'pdfmake/interfaces'; declare const __propDef: { props: { node: ContentSection; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type ContentSectionRendererProps = typeof __propDef.props; export type ContentSectionRendererEvents = typeof __propDef.events; export type ContentSectionRendererSlots = typeof __propDef.slots; export default class ContentSectionRenderer extends SvelteComponent { } export {};