import { API } from "./api"; import { Camera } from "./camera"; declare class AccessControl { private _api; private _id; constructor(api: API, id: number); get api(): API; get id(): number; getData(): Promise<{ placeId: number; id: number; name: string; forpostGroupId: string; forpostAccountId: string | null; type: string; allowOpen: boolean; allowVideo: boolean; allowCallMobile: boolean; entrances: any[]; }>; getCamera(): Promise; open(): Promise; } export { AccessControl };