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
633 B
Text
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 {};
|