import Node from './../type/node'; import NodeParameters from './../type/node-parameters'; declare abstract class SystemNodeBuilder { build(): Node; protected getCreatorUrl(): string; protected getSystemAccountUrl(): string; protected getAnonymousAccountUrl(): string; protected buildUrl(type_id: string, id: string): string; protected getPermissionUrls(): string[]; protected getInstanceUrls(): string[]; protected getChildTypeUrls(): string[]; private getCurrentTimestamp; private getNodeUrl; private getTypeUrl; private getParentTypeUrl; private isTypeNode; private getTypeId; private getHostnamePlaceholder; protected abstract getNodeParameters(): NodeParameters; } export default SystemNodeBuilder;