import { ToolResult } from '@hitoshura25/core'; export interface SetupSigningParams { project_path?: string; strategy?: 'dual' | 'single'; keystore_password?: string; } export interface KeystoreInfo { path: string; password: string; alias: string; } export interface SetupSigningResult { production_keystore: KeystoreInfo; local_dev_keystore?: KeystoreInfo; gradle_properties_created: boolean; instructions: string[]; } export declare function setupSigningConfig(params: SetupSigningParams): Promise>; //# sourceMappingURL=setup-signing-config.d.ts.map