import { type PropsWithChildren } from 'react'; import type { Dictionary } from '../../@aileron/declare/index.js'; interface UserDefinedContextProviderProps { /** User defined context */ context?: Dictionary; } export declare const UserDefinedContextProvider: ({ context, children, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};