import { PropsWithChildren } from 'react'; import type { Core } from '../core'; import type { Registry } from '../registry'; import type { BreakpointId, Subtree } from '../types'; declare type Props = PropsWithChildren<{ breakpoint?: BreakpointId; core?: Core; registry?: Registry; tree?: Subtree; onUpdate?: (next: Subtree) => void; }>; export declare const CoreTestProvider: ({ children, breakpoint, core, registry, tree, onUpdate }: Props) => JSX.Element; export {};