import { MessageFunctionType, Result } from "../types"; export interface IsArraySizeGreaterThanErrors { TARGET_ARGUMENT_NOT_AN_ARRAY: MessageFunctionType; } export declare const IS_ARRAY_SIZE_GREATER_THAN_ERRORS: IsArraySizeGreaterThanErrors; /** * Tests if the `array`'s length is greater * than the `constraint` number. * * ### Example * ``` * expect(isArraySizeGreaterThan([1,2], 1).value).toBeTruthy() * ``` * @param array The array being checked. * @param constraint The size constraint */ export declare function isArraySizeGreaterThan(array: any[], constraint: number): Result;