import type { FC, PropsWithChildren } from 'react';
import type { GraphQLDocsSettings } from './settings';
import type { GraphQLConfig } from '@redocly/config';
export interface SettingsContextProps {
    value?: GraphQLConfig;
}
export declare const SettingsProvider: FC<PropsWithChildren<SettingsContextProps>>;
export declare function useSettings(): GraphQLDocsSettings;
