/** * 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 or equal to the target, false otherwise. */ export declare function isGreaterThanOrEqualTo(value: number, target: number): boolean; export declare function isGreaterThanOrEqualToError(value: number, target: number, field: string, code?: string): void;