Rocky_Mountain_Vending/.pnpm-store/v10/files/4a/10e98341e407ee3eb444294b0ccdfc7f021627130c4d7f61906f17d0210762da73c9b003e287ecb1448e52acda866011f14ad4772179b01edffcb030ac9b9b
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

15 lines
584 B
Text

import React, { ReactElement } from 'react';
import { ChartCoordinate, ChartOffset, LayoutType, TooltipEventType } from '../util/types';
export type CursorProps = {
activeCoordinate: ChartCoordinate;
activePayload: any[];
activeTooltipIndex: number;
chartName: string;
element: ReactElement;
isActive: boolean;
layout: LayoutType;
offset: ChartOffset;
tooltipAxisBandSize: number;
tooltipEventType: TooltipEventType;
};
export declare function Cursor(props: CursorProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;