import { Arbitrary } from './definition/Arbitrary';
/**
 * For tuples produced by the provided `arbs`
 * @param arbs - Ordered list of arbitraries
 */
declare function genericTuple<Ts>(arbs: Arbitrary<Ts>[]): Arbitrary<Ts[]>;
export { genericTuple };
