import { PropsWithChildren } from 'react'; type RenderProvidersProps = PropsWithChildren<{ documentId?: string; isArticle?: boolean; theme?: string; darkMode?: boolean; config?: any; notes?: any; }>; export declare const RenderProviders: ({ documentId, isArticle, children, config, theme, darkMode, notes, }: RenderProvidersProps) => import("react/jsx-runtime").JSX.Element; export {};