import { RefObject } from "react"; //#region src/hooks/useListHeight.d.ts interface UseContentHeightProps { listParentRef: RefObject; headerRef?: RefObject; } declare const useListHeight: ({ listParentRef, headerRef }: UseContentHeightProps) => { listHeight: number; }; //#endregion export { useListHeight }; //# sourceMappingURL=useListHeight.d.ts.map