/** * Evaluates whether a value is truthy. This should be used when a string value is expected to parsed into a boolean ie. * ```bash * 'false' => false * 'true' => true * ``` */ export declare function isTrue(value: string | boolean): boolean; /** * Checks whether a string is a UUID */ export declare function isUuid(value: string): boolean; //# sourceMappingURL=boolean-utils.d.ts.map