Rocky_Mountain_Vending/.pnpm-store/v10/files/97/4bfff2b5db7d89f31257d6a8267d34442ecf50f70313d6add06980423641276b1d6e704bc9b4afee828130b98c71e5a734d39ac20c50fe89017f862d5ef4ec
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

8 lines
335 B
Text

import type { DayPickerProps, Labels } from "../types/index.js";
/**
* Merges custom labels from the props with the default labels.
*
* @param customLabels The custom labels provided in the DayPicker props.
* @returns The merged labels object.
*/
export declare function getLabels(customLabels: DayPickerProps["labels"]): Labels;