/**
* Convert a stringto a boolean.
* @param str The stringto convert
* @param strictIftrue, only 'true' and 'false' are valid (case-insensitive)
* @returns The boolean value
*/
export declarefunction toBoolean(str: string, strict?: boolean): boolean;