import * as React from 'react'; import { Translations } from "../i18n/index.js"; import { AdConfig } from "../Ad/index.js"; export interface DocsConfig { LANGUAGES: string[]; LANGUAGES_SSR: string[]; LANGUAGES_IN_PROGRESS: string[]; LANGUAGES_IGNORE_PAGES: (pathname: string) => boolean; } export interface DocsProviderProps { config: DocsConfig; adConfig?: Partial; defaultUserLanguage: string; children?: React.ReactNode; translations?: Translations; } export declare function DocsProvider({ config, adConfig, defaultUserLanguage, translations, children }: DocsProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useDocsConfig(): DocsConfig;