import { NavigationBase } from "./navigation-base"; /** * Array of entities which have a back reference to this entity (parent/child relationship). */ export declare class Children extends NavigationBase { readonly type: string; readonly backReferenceName: string; constructor(name: string, args: Children.CtorArgs); } export declare module Children { interface CtorArgs extends NavigationBase.CtorArgs { back: string; } }