<?php
defined( 'ABSPATH' ) || exit;

interface BW_WebP_Converter {

	public static function is_available(): bool;

	/**
	 * @throws RuntimeException on failure (caller logs and marks the manifest row failed).
	 */
	public function convert( string $src, string $dest, int $quality ): void;

	public function name(): string;
}
