| Linux premium331.web-hosting.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 Path : /proc/self/root/home/livedhms/lmgt/node_modules/next/dist/client/components/ |
| Current File : //proc/self/root/home/livedhms/lmgt/node_modules/next/dist/client/components/client-segment.d.ts |
import type { Params } from '../../server/request/params';
/**
* When the Page is a client component we send the params to this client wrapper
* where they are turned into dynamically tracked values before being passed to the actual Segment component.
*
* additionally we may send a promise representing params. We don't ever use this passed
* value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations
* such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.
*/
export declare function ClientSegmentRoot({ Component, slots, serverProvidedParams, }: {
Component: React.ComponentType<any>;
slots: {
[key: string]: React.ReactNode;
};
serverProvidedParams: null | {
params: Params;
promises: Array<Promise<any>> | null;
};
}): import("react/jsx-runtime").JSX.Element;