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