/** * Asynchronously modifies a property of a plist file at the given path. * * @template T - The type of the plist file contents. * @param {string} path - The path to the plist file. * @param {(plist: T) => T} callback - The function that modifies the plist contents. * @returns {Promise} A promise that resolves when the modified plist has been written to disk. */ export declare const withPlist: (path: string, callback: (plist: T) => T) => Promise;