import type { MutableRefObject } from 'react'; interface UseContentHeightProps { listParentRef: MutableRefObject; headerRef: MutableRefObject; } export declare const minTokenListHeight = 360; export declare const minMobileTokenListHeight = 160; export declare const useTokenListHeight: ({ listParentRef, headerRef, }: UseContentHeightProps) => { minListHeight: number; tokenListHeight: number; }; export {};