interface getXcodeVersionAsyncResult {
    xcodeVersion: string | null;
}
/**
 * Get the version of Xcode installed on the system
 * @returns {version: string | null}
 */
export declare function getXcodeVersionAsync(): Promise<getXcodeVersionAsyncResult>;
export {};
