import { ReactNode } from "react"; /** * Allow deeply nested children to render at the custom location in the tree to preserve component state even if children components change */ export declare function makePermanence(): readonly [(props: { children: ReactNode; }) => JSX.Element, (props: { children: ReactNode; }) => JSX.Element | null];