import { type FiberRoot } from '../core'; export interface RootOptionsInternal { identifierPrefix?: string; onRecoverableError?: (error: unknown) => void; onCaughtError?: (error: unknown) => void; onUncaughtError?: (error: unknown) => void; } export declare function createFiberRoot(container: Element | Document | DocumentFragment, options: RootOptionsInternal): FiberRoot; export declare function attachRootFiber(root: FiberRoot, container: Element | Document | DocumentFragment): void;