import Pointer from '../Pointer';
/** Returns the smallest ID not used by the pointers in the given list. */
declare const getUniquePointerId: (pointers: Pointer[]) => number;
export default getUniquePointerId;
