import type { RefObject } from 'react'; interface UseContentHeightProps { listParentRef: RefObject; headerRef?: RefObject; } export declare const useListHeight: ({ listParentRef, headerRef, }: UseContentHeightProps) => { listHeight: number; }; export {};