Rocky_Mountain_Vending/.pnpm-store/v10/files/90/4141ce653c1b7d39fe6e0d2f5fb6089ef9f7c43fd589ecf20ee7bc24b75d151c1bb6155a4e9fa726c65ce1f45884a0abef7b8febcb61a967ba4542ab4c907b
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
633 B
Text

import React, { type Ref } from 'react';
interface DragContextValue {
register: (el: HTMLElement) => void;
unregister: (el: HTMLElement) => void;
handles: Set<HTMLElement>;
disabled: boolean;
}
export declare function DragProvider({ children, disabled, }: {
children: React.ReactNode;
disabled?: boolean;
}): import("react/jsx-runtime").JSX.Element;
export declare function useDragContext(): DragContextValue | null;
export declare function DragHandle({ children, ref, ...props }: React.HTMLAttributes<HTMLDivElement> & {
ref?: Ref<HTMLDivElement>;
}): import("react/jsx-runtime").JSX.Element;
export {};