> */ public static function get_limits_per_currency(): array; /** * Get minimum amount for a currency and country * * @param string $currency The currency code. * @param string $country The country code. * @return int|null Returns null if no limit is set */ public static function get_minimum_amount( string $currency, string $country ): ?int; /** * Get maximum amount for a currency and country * * @param string $currency The currency code. * @param string $country The country code. * @return int|null Returns null if no limit is set */ public static function get_maximum_amount( string $currency, string $country ): ?int; }