Rocky_Mountain_Vending/.pnpm-store/v10/files/74/11c3cd4330d9ae7312bfa6a7bd0c40c00f4ba9d5a2a366d8f2ef679cd7d701b35dc6790416f30084903399aaaf456007986eacd5b268935175cf2d0a0fc8b5
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

16 lines
778 B
Text

import { type Dispatch, type SetStateAction } from 'react';
export type PanelStateKind = 'preferences' | 'route-type' | 'segment-explorer' | 'panel-selector' | 'turbo-info';
export declare const PanelRouterContext: import("react").Context<{
panel: PanelStateKind | null;
setPanel: Dispatch<SetStateAction<PanelStateKind | null>>;
triggerRef: React.RefObject<HTMLButtonElement | null>;
selectedIndex: number;
setSelectedIndex: Dispatch<SetStateAction<number>>;
}>;
export declare const usePanelRouterContext: () => {
panel: PanelStateKind | null;
setPanel: Dispatch<SetStateAction<PanelStateKind | null>>;
triggerRef: React.RefObject<HTMLButtonElement | null>;
selectedIndex: number;
setSelectedIndex: Dispatch<SetStateAction<number>>;
};