import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsUppercaseProps { } /** * Check if the string is uppercase. */ export declare const isUppercase: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;