import type {ImmutableTree} from './types'; export default function remove( tree: ImmutableTree, key: K, cmp: (key: K, treeValue: T) => number, ): ImmutableTree; export const removeIfExists: typeof remove; export const removeOrThrowIfNotExists: typeof remove;