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>
16 lines
778 B
Text
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>>;
|
|
};
|