/** Throw in all generic functions here */ declare const intToChar: (int: number) => string; declare const rand: (min: number, max: number) => number; declare const guid: () => string; export { intToChar, rand, guid };