/** @tossdocs-ignore */ import { ReactNode } from 'react'; declare type ProviderProps = (ContextValuesType & { children: ReactNode; }) | { children: ReactNode; }; export declare function buildContext(contextName: string, defaultContextValues?: ContextValuesType | null): readonly [{ ({ children, ...contextValues }: ProviderProps): JSX.Element; displayName: string; }, () => ContextValuesType]; export {};