import { TW } from 'twind'; export declare const resolveClasses: (obj1: any, obj2: any) => any; export declare const camelize: (str: string) => string; interface ParseClassProps { tw: TW; /** * Classes passed by user */ classes?: T; /** * Non-tailwind custom classes. Only use this as an escape hatch */ customClasses?: T; /** * Default tailwind classes */ defaultClasses: T; tag: string; } export declare const hmsUiClassParserGenerator: ({ tw, classes, customClasses, defaultClasses, tag, }: ParseClassProps) => (s: keyof T) => string | T[keyof T]; export {};