/** * Checks if value > target. * @param value The value being checked. * @param target The target value to perform the check against. * @return True if the value is greater than the target, false otherwise. */ export declare function isGreaterThan(value: number, target: number): boolean; export declare function isGreaterThanError(value: number, target: number, field: string, code?: string): void;