import { type ClassValue } from "clsx";
/**
 * Convert christ year to buddhist year (+543)
 */
export declare const ConvertToThaiYear: (christYear: number) => number;
/**
 * Get highlighted list by date
 */
export declare const GetHighlightByDate: (date?: Date) => {
    "react-datepicker__day--highlighted-today": Date[];
}[];
/**
 * Merge and deduplicate classnames using tailwind-merge and clsx.
 */
export declare const cn: (...inputs: ClassValue[]) => string;
