import { LayoutVariant } from '@redocly/config';
import type { PropsWithChildren } from 'react';
import type { DownloadUrls, AsyncApiDefinition } from '../types/index.js';
import { ProtocolVariant } from '../types/index.js';
type AppProviderStore = {
    store: {
        layout: LayoutVariant;
        protocol: ProtocolVariant;
        routingBasePath: string;
        downloadUrls: DownloadUrls[];
        definition: AsyncApiDefinition;
        markdocOptions: any;
    };
};
export declare const AppProvider: ({ children, store }: PropsWithChildren<AppProviderStore>) => import("react/jsx-runtime").JSX.Element;
export {};
