import remarkGfm from 'remark-gfm';
export type UseMarkdownPluginsProps = {
    children: string;
};
export declare const useMarkdownPlugins: ({ children }: UseMarkdownPluginsProps) => {
    remarkPlugins: (typeof remarkGfm | (typeof import("remark-math").default | {
        singleDollarTextMath: boolean;
    })[])[];
    rehypePlugins: (typeof import("rehype-katex/lib").default | {
        displayMode: boolean;
        output: string;
        errorColor: string;
        strict: () => void;
    })[][];
    singleDollarTextMath: boolean;
};
