/// import { Auth } from '@expo/apple-utils'; /** * Get the username and possibly the password from the environment variables or the supplied options. * Password is optional because it's only needed for authentication, but not for re-authentication. * * @param options */ export declare function resolveCredentialsAsync(options: Partial): Promise>; export declare function promptPasswordAsync({ username, }: Pick): Promise; export declare function deletePasswordAsync({ username, }: Pick): Promise;