import {ImmutableTree, NonEmptyImmutableTree} from './types'; export default function splitLast( tree: NonEmptyImmutableTree ): { readonly tree: ImmutableTree; readonly value: T; };