export interface RemoveLiquidityParams {
    depositId: number;
    percent: number;
    walletClient: any;
}
export interface RemoveLiquidityResponse {
    success: boolean;
    error?: string;
    transactionData?: any;
    transactionHash?: string;
}
