<?php declare(strict_types=1);

namespace App\Captcha\Contracts;

interface ImageManager
{
    public function createImage(int $width, int $height): Image;
}