import type { ArrayConstraints, Test } from "../definition/_index.mjs";
declare function assertArray<Type>(value: unknown, constraints?: ArrayConstraints<Type> | Test<Type>): asserts value is Array<Type>;
export { assertArray };
