export interface KeystoreConfig { path: string; password: string; alias: string; keyPassword: string; } /** * Generates a test keystore for Android signing * Uses keytool to create a self-signed certificate */ export declare function generateTestKeystore(outputDir: string): Promise; //# sourceMappingURL=keystore-generator.d.ts.map