import { NavigationBase } from "./navigation-base"; /** * Array of entities of which this entity has the keys stored in an array. */ export declare class Collection extends NavigationBase { readonly type: string; readonly keysName: string; constructor(name: string, args: Collection.CtorArgs); } export declare module Collection { interface CtorArgs extends NavigationBase.CtorArgs { keys: string; } }