import { Infer } from '../types.js'; import XVType from '../XVType.js'; declare class XVTuple[] = any> extends XVType<{ [K in keyof T]: Infer; }> { readonly TupleTypes: T; constructor(TupleTypes: T); protected check(value: unknown): { [K in keyof T]: Infer; }; } export { XVTuple as default };