import type { MarkpageOptions } from "./MarkpageOptions"; type $$ComponentProps = { source: string; options?: MarkpageOptions; unknownToken?: ((token: any) => any) | undefined; }; declare const Markdown: import("svelte").Component<$$ComponentProps, {}, "">; type Markdown = ReturnType; export default Markdown;