import type { Simctl } from '../simctl'; /** * Get the full path to the particular application container * on the local file system. Note, that this subcommand throws * an error if bundle id of a system application is provided, * like 'com.apple.springboard'. * It is required that Simulator is in _booted_ state. * * @param bundleId - Bundle identifier of an application. * @param containerType - Which container type to return. Possible values * are 'app', 'data', 'groups', ''. * The default value is 'app'. * @return Full path to the given application container on the local * file system. * @throws {Error} If the corresponding simctl subcommand command * returns non-zero return code. * @throws {Error} If the `udid` instance property is unset */ export declare function getAppContainer(this: Simctl, bundleId: string, containerType?: string | null): Promise; //# sourceMappingURL=get_app_container.d.ts.map