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