import { EntryStatus } from "../enums";

export interface AgentPrintAction {
  id: number;
  label: string;
  validEntryStatuses: EntryStatus[];
}
