/** * Parse a string into an Integer, Float, Object, or Boolean * @param str String to parse into the different types */ export declare function transformType(str: string): string | number | unknown | boolean;