export declare type Tuple<T> = [T, T];
export declare function isTuple<T>(arr: T[]): arr is Tuple<T>;
export declare type Triple<T> = [T, T, T];
export declare function isTriple<T>(arr: T[]): arr is Triple<T>;
//# sourceMappingURL=types.d.ts.map