import { ReactNode } from 'react'; export interface Props { children: ReactNode; } declare const UIProvider: ({ children }: Props) => import("react/jsx-runtime").JSX.Element; export default UIProvider;