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