export const isAsyncBranch = (value: any): value is AsyncBranch =>
  hasLabel(value) && isFunction(children(value));