import { type VNode } from 'vue'; import type { Token } from '../../../markdown-it'; import 'highlight.js/styles/github-dark.css'; type __VLS_Slots = { header: (props: { language: string; token: Token[]; }) => null | undefined | VNode; }; type __VLS_Props = { token: Token[]; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { mounted: (payload: { el: HTMLElement | null; }) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onMounted?: ((payload: { el: HTMLElement | null; }) => any) | undefined; }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };