import { FunctionComponent, Key } from 'react';
export interface ResizeObservedRowProps {
    onResize: (rowIndex: Key, height: number) => void;
    rowIndex: Key;
}
declare const ResizeObservedRow: FunctionComponent<ResizeObservedRowProps>;
export default ResizeObservedRow;
