import { RefObject } from 'react'; export interface UsePanelHeightProps { isActive: boolean; ref: RefObject; } export declare const usePanelHeight: ({ isActive, ref }: UsePanelHeightProps) => void;