import type { Context } from './index.ts'; import type { ContextOptions } from './types.ts'; type CreateContext = (options: ContextOptions) => Context; export declare function createSpeculativeChild(parent: Context, createContext: CreateContext): Context; export declare function commitSpeculativeChild(parent: Context, child: Context): void; export {};