/** * @param plistName base filename of property list. if no extension, assumes .plist */ declare function modifyAsync(plistPath: string, plistName: string, transform: (config: any) => any): Promise; declare function createBlankAsync(plistPath: string, plistName: string): Promise; declare function cleanBackupAsync(plistPath: string, plistName: string, restoreOriginal?: boolean): Promise; export { modifyAsync, cleanBackupAsync, createBlankAsync };