import Xjs from "../xjs"; import { PropertyType } from "./types"; declare class App { private internal; constructor(config: Xjs); setProperty(prop: PropertyType, param: any): Promise; getProperty(prop: PropertyType, param?: any): Promise; } export default App;