import type { RectReadOnly } from 'react-use-measure'; import type { DimensionValue } from '@coinbase/cds-common'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import { type PopoverContentPositionConfig } from '../overlays/popover/PopoverProps'; type UseResponsiveHeightParams = { gap?: ThemeVars.Space; dropdownBounds: RectReadOnly; maxHeight?: React.CSSProperties['maxHeight']; visible: boolean; placement: PopoverContentPositionConfig['placement']; }; export declare function useResponsiveHeight({ gap, dropdownBounds, maxHeight, visible, placement, }: UseResponsiveHeightParams): { dropdownHeight: DimensionValue | undefined; }; export {}; //# sourceMappingURL=useResponsiveHeight.d.ts.map