import { History } from './followUp/History';
import { StatusEnum } from './followUp/StatusEnum';
import { StepEnum } from './followUp/StepEnum';
/** Follow up history of an order */
export interface FollowUp {
    /** Step history of order follow-up */
    history: History[];
    /** Step status of order follow-up */
    status: StatusEnum;
    /** Step of order follow-up */
    step: StepEnum;
}
//# sourceMappingURL=FollowUp.d.ts.map