import React from 'react';
import type { PropsWithChildren } from 'react';
import type { ComponentContextValue } from './ComponentContext';
export declare function WithComponents({ children, overrides, }: PropsWithChildren<{
    overrides: Partial<ComponentContextValue>;
}>): React.JSX.Element;
