type ClassDictionary = Record<string, any>;
type ClassValue = ClassValue[] | string | number | bigint | ClassDictionary | null | boolean | undefined;
type ClassArray = ClassValue[];
declare function cx(...args: ClassValue[]): string;

export { type ClassArray, type ClassDictionary, type ClassValue, cx, cx as default };
