import { type ReactNode } from "react"; import { type EditorialConfig } from "./EditorialReactConfigContext"; interface EditorialReactConfigProviderProps { children: ReactNode; config: EditorialConfig; } export declare function EditorialReactConfigProvider({ children, config, }: EditorialReactConfigProviderProps): import("react/jsx-runtime").JSX.Element; export {};