/** * Mountain class used to keep track of URL bases and roots */ export declare class Mountain { base: string; /** * Database table used by the 'CollectionOf' and 'Reflect' decorators */ table: string; constructor(base: string); }