declare const strContainsPunctuation: (word: string) => boolean; declare const getEnumKeyByValue: (obj: { [key: string]: T; }, value: T) => string; declare const uuid: (length?: number) => string; declare const greater: (a: number, b: number) => boolean; declare const less: (a: number, b: number) => boolean; declare const approxEq: (a: number, b: number) => boolean; declare const convertHexToAssColor: (hexColor: string) => string; declare const insertTriplet: (arr: any[], a: any, b: any, c: any) => any[]; declare const getSampleItems: (items: any[], count: number) => any[]; export { uuid, less, approxEq, greater, insertTriplet, getSampleItems, getEnumKeyByValue, strContainsPunctuation, convertHexToAssColor, };