/** * Lib Provider * */ import React from 'react'; import type { ContextProps } from './Context'; export declare type ProviderProps = { /** * Send in an object that gets spread as properties to the Provider */ value?: ContextProps; /** * The content */ children: React.ReactNode; } & ContextProps; export default function Provider(localProps: ProviderProps & Props): JSX.Element;