type Matrix = any[][];
interface Options {
    excludeEmpty?: boolean;
}
export declare function transpose(matrix: Matrix, options?: Options): Matrix;
export {};
