import MarkdownIt from 'markdown-it'; type Options = { clientOnly: boolean; alias: Record | null; }; declare const componentPreview: (md: MarkdownIt, options?: Partial) => void; declare const containerPreview: (md: MarkdownIt, options?: Partial) => void; export { componentPreview, containerPreview };