/** * Checks if the string is lowercase. * If given value is not a string, then it returns false. * * @param value The value being checked. * @returns True if the string is lowercase, false otherwise. */ export declare function isLowercase(value: string): boolean;