1 | import type { ReactElement } from 'react';
|
2 | import type { Root } from 'react-dom/client';
|
3 | declare const MARK = "__antd_mobile_root__";
|
4 | declare type ContainerType = (Element | DocumentFragment) & {
|
5 | [MARK]?: Root;
|
6 | };
|
7 | export declare function render(node: ReactElement, container: ContainerType): void;
|
8 | export declare function unmount(container: ContainerType): boolean | Promise<void>;
|
9 | export {};
|