import * as React from 'react'; export type AutoHeightWrapperProps = { readonly children: (height: number) => React.ReactNode; }; declare const AutoHeightWrapper: (props: AutoHeightWrapperProps) => React.JSX.Element; export default AutoHeightWrapper;