import { RefObject } from 'react'; /** * useCarouselMinHeight * * Locks a carousel container's minimum height to the tallest observed value while * `enabled` is true. Useful when a carousel temporarily shrinks (small-carousel mode) * and slide content wraps, causing per-slide height changes. When disabled, the * tracker resets so the layout returns to its natural size. */ export declare const useCarouselMinHeight: (ref: RefObject, baseMinHeight: number, enabled: boolean, observeKey: unknown) => number; export default useCarouselMinHeight;