Rocky_Mountain_Vending/.pnpm-store/v10/files/94/bfbbef31b876a1e9753403c373b3c8c8589f92de01c772c0ef96f1a09f26db23b7a411960fd88ff680d4f2030f69a6b1af47c9c9d8312975c468395f0e8226
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

19 lines
911 B
Text

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;