import React from 'react';
export declare const getListAndHeight: ({ children, columnCount, wrapRef, gutter, }: {
    children: React.ReactNode;
    columnCount: number;
    wrapRef: any;
    gutter: number;
}) => {
    list: {
        node: React.ReactNode;
        style: {
            [props: string]: any;
        };
    }[];
    height: number;
};
