import type { GraphQLSchema } from 'graphql';
import type { PropsWithChildren } from 'react';
import type { GraphQLConfig } from '@redocly/config';
interface AppProvidersProps {
    schema?: GraphQLSchema;
    settings?: GraphQLConfig;
    withCommonStyles?: boolean;
}
export declare function AppProviders({ schema, settings, children, withCommonStyles }: PropsWithChildren<AppProvidersProps>): import("react/jsx-runtime").JSX.Element;
export {};
