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