@brendonovich/kobalte__solidbase
Version:
Fully featured, fully customisable static site generation for SolidStart
18 lines (16 loc) • 457 B
TypeScript
declare module "solid-mdx" {
import type { PropsWithChildren, JSX } from "solid-js";
export declare const MDXContext: import("solid-js").Context<{
[k: string]: (props: any) => JSX.Element;
}>;
export declare const MDXProvider: (
props: PropsWithChildren<{
components: {
[k: string]: (props: any) => JSX.Element;
};
}>,
) => JSX.Element;
export declare const useMDXComponents: () => {
[k: string]: (props: any) => JSX.Element;
};
}