/**
 * Creates a tuple of any with the same length as GTuple
 */
export declare type ISameLength<GTuple extends any[]> = Extract<{
    [K in keyof GTuple]: any;
}, any[]>;
