///
declare module "markdown-it-task-lists" {
import type { PluginWithOptions } from "markdown-it";
declare namespace markdownItTaskLists {
interface Config {
enabled?: boolean;
label?: boolean;
labelAfter?: boolean;
}
}
declare const markdownItTaskLists: PluginWithOptions;
export = markdownItTaskLists;
}
declare module "virtual:icons/*" {
import type { ComponentType, SVGProps } from "react";
const component: ComponentType>;
export default component;
}