export interface ProposeTransactionParams { safeAddress: string; safeTransaction: any; safeTxHash: string; signerAddress: string; origin?: string; } export declare function proposeSafeTransaction(params: ProposeTransactionParams): Promise<{ success: boolean; message: string; }>;