import OperationInterface from '../operations/OperationInterface'; export default interface ProcessInterface { process: (token: string) => Promise; operation: OperationInterface; }