import type { ParserDef } from './types.js'; export * from './createTokenizerParser.js'; export * from './defaultParsers.js'; export * from './types.js'; export type StarkdownOpts = { plugins?: ParserDef[]; }; /** Parse Markdown into an HTML String */ export declare function starkdown(md: string, { plugins }?: StarkdownOpts): string;