import type { InSim } from 'node-insim'; import type { ReactNode } from 'react'; export type CreateRootOptions = { appendButtonIDs?: boolean; buttonClickIDStart?: number; }; export declare function createRoot(inSim: InSim, { appendButtonIDs, buttonClickIDStart }?: CreateRootOptions): { render(children: ReactNode): void; };