interface Ancestor {
  reference: object;
  path: string;
}

type Ancestors = Ancestor[];

export type {
  Ancestor,
  Ancestors
};
