import { MiddlewareConfig, SerializableComponent } from "./types"; /** * Iterates over the sharify `renderQueue` and attaches a rehydrated and rendered * component at its mountId attach point. */ export declare function clientRenderer({ wrapper: Wrapper, modules, }: MiddlewareConfig): { components: {}; /** * Executed when the client mounts */ mount: ({ moduleName, ...component }: SerializableComponent) => void; };