import * as tailwind_merge from 'tailwind-merge';
import { twJoin } from 'tailwind-merge';
import { ClassValue } from 'clsx';

declare const isValidSpacing: (value: string) => boolean;
declare const fractionRegex: RegExp;
declare const isFraction: (value: string) => boolean;
declare const tshirtUnitRegex: RegExp;
declare const isTshirtSize: (value: string) => boolean;
declare const heightTshirtUnitRegex: RegExp;
declare const isHeightTshirtSize: (value: string) => boolean;
declare const customTwMerge: (...classLists: tailwind_merge.ClassNameValue[]) => string;
declare const cj: typeof twJoin;
declare function cn(...inputs: ClassValue[]): string;
declare const alternatingBgColorLightClassNames: string;

export { alternatingBgColorLightClassNames, cj, cn, customTwMerge, fractionRegex, heightTshirtUnitRegex, isFraction, isHeightTshirtSize, isTshirtSize, isValidSpacing, tshirtUnitRegex };
