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