export interface IKatex {
    render(source: string, options: {
        displayMode?: boolean;
        throwOnError?: boolean;
    }): unknown;
}
declare const loadKatex: () => Promise<IKatex>;
export default loadKatex;
