export declare function asBuilder(whatever: unknown): Builder; export interface Builder { build: () => T; } export type RelationshipInfo = { title: string; from: string; to: string; }; export type SummaryInfo = { title: string; from: string | number; to: string | number; };