import { Keystore } from '../credentials'; interface AndroidCredentials { keystore: Keystore; } interface iOSCredentials { provisioningProfile: string; distributionCertificate: { certP12: string; certPassword: string; }; } export declare function fileExistsAsync(projectDir: string): Promise; export declare function readAndroidCredentialsAsync(projectDir: string): Promise; export declare function readIosCredentialsAsync(projectDir: string): Promise; export declare function readSecretEnvsAsync(projectDir: string): Promise | undefined>; export declare function readRawAsync(projectDir: string): Promise; export {};