export interface DeploySafeParams { owners: string[]; threshold: number; saltNonce?: number; } export declare function deploySafe(params: DeploySafeParams): Promise<{ success: boolean; message: string; safeAddress?: string; }>;