import React from "react";
import "./Ui89VirtualList.css";
export interface Ui89VirtualListPropsRenderRowProps<T> {
    index: number;
    row: T;
}
export interface Ui89VirtualListProps<T> {
    maxHeight?: string;
    rows: T[];
    rowHeight?: number;
    renderRow: (props: Ui89VirtualListPropsRenderRowProps<T>) => React.ReactNode;
    getRowKey?: (row: T) => string;
}
/**
 * Virtualization at row level. Great for long lists.
 *
 * Can be used to implement table components with few columns.
 */
export declare const Ui89VirtualList: <T>(props: Ui89VirtualListProps<T>) => JSX.Element;
