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>
11 lines
394 B
Text
11 lines
394 B
Text
import type { ClassNames } from "../types/index.js";
|
|
/**
|
|
* Returns the default class names for the UI elements.
|
|
*
|
|
* This function generates a mapping of default class names for various UI
|
|
* elements, day flags, selection states, and animations.
|
|
*
|
|
* @returns An object containing the default class names.
|
|
* @group Utilities
|
|
*/
|
|
export declare function getDefaultClassNames(): ClassNames;
|