import { RefObject } from 'react'; import { ContainerHeightType } from '../../ItemPickerNew/ItemPickerNew.types'; type UseListHeightType = { heightConfig?: ContainerHeightType; calculatedContentHeight?: number; containerRef: RefObject; includeSearchBar?: boolean; includeFooter?: boolean; }; export declare const useListHeight: ({ heightConfig, calculatedContentHeight, containerRef, includeSearchBar, includeFooter, }: UseListHeightType) => { listWrapperHeight: number; outerWrapperHeight: string; offsetSpace: number; }; export {};