Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/1765bb0f40f9c0856b0e4118833a9743f212aff54c0bac3bab615c1b781c476a61e6a31796b5fdfd5461aed2edda74775c724e8a6f80aad3b5ac81856339af
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

25 lines
1.1 KiB
Text

import type { ReactNode } from 'react';
export type SegmentBoundaryType = 'not-found' | 'error' | 'loading' | 'global-error';
export declare const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE = "NEXT_DEVTOOLS_SIMULATED_ERROR";
export type SegmentNodeState = {
type: string;
pagePath: string;
boundaryType: string | null;
setBoundaryType: (type: SegmentBoundaryType | null) => void;
};
export declare function SegmentViewStateNode({ page }: {
page: string;
}): null;
export declare function SegmentBoundaryTriggerNode(): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null;
export declare function SegmentViewNode({ type, pagePath, children, }: {
type: string;
pagePath: string;
children?: ReactNode;
}): React.ReactNode;
export declare function SegmentStateProvider({ children }: {
children: ReactNode;
}): import("react/jsx-runtime").JSX.Element;
export declare function useSegmentState(): {
boundaryType: SegmentBoundaryType | null;
setBoundaryType: (type: SegmentBoundaryType | null) => void;
};