<?php
namespace Filament\Forms\Components\Contracts;
use Filament\Forms\Components\Actions\Action;
interface HasAffixActions
{
/**
* @return array<Action>
*/
public function getPrefixActions(): array;
/**
* @return array<Action>
*/
public function getSuffixActions(): array;
}