interface Op<T> {
    (result: T, x: T, index: number, xs: T[]): T;
}
export declare const zipWidth: <T>(op: Op<T>, ...xs: T[][]) => T[];
export {};
