Rocky_Mountain_Vending/.pnpm-store/v10/files/2f/4f2b58c7a2f0fce9d512320685dc2704bb3961c2ddc18d4825dad8a60387cbd44aa9165f7af57f8ae65f4cd9eaacd2e748eccb9eb9f51d16d3341de26b281f
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

9 lines
489 B
Text

import { type FormProps } from './form-shared';
export type { FormProps };
declare const Form: import("react").ForwardRefExoticComponent<Omit<{
action: NonNullable<string | ((formData: FormData) => void | Promise<void>) | undefined>;
prefetch?: false | null;
replace?: boolean;
scroll?: boolean;
} & Omit<import("react").HTMLProps<HTMLFormElement>, "action" | "method" | "target" | "encType">, "ref"> & import("react").RefAttributes<HTMLFormElement>>;
export default Form;