import { LockTypes } from '../enums/locktypes.enum'; import { PermissionElementDTO } from '../models/element'; export declare function doorlock(elementName: string): { name: string; keys: any[]; lockType: typeof LockTypes; lockWith(keys: string[]): PermissionElementDTO; unlockWith(keys: string[]): PermissionElementDTO; };