import React from 'react';
import { FixedSizeList as List, FixedSizeListProps as ListProps } from 'react-window';
export interface FixedSizeListProps extends ListProps {
}
export declare const FixedSizeList: React.ForwardRefExoticComponent<FixedSizeListProps & React.RefAttributes<List>>;