import { ClientReferenceVisitor } from "@fullstackhouse/react-ssr-prepass"; import React from "react"; /** * Runs prepass on the React tree and returns all data for prerendering a Plasmic page. */ export declare function plasmicPrepassExtract(element: React.ReactElement, onClientComponentRef?: ClientReferenceVisitor): Promise>; /** * Runs prepass on the React tree and returns query data for prerendering a Plasmic page. */ export declare function extractPlasmicQueryData(element: React.ReactElement, onClientComponentRef?: ClientReferenceVisitor): Promise>; /** * Runs prepass on the React tree. */ export declare function plasmicPrepass(element: React.ReactElement, onClientComponentRef?: ClientReferenceVisitor): Promise;