import type * as Merge from "../../../index"; /** * The state of the payroll run * * * `PAID` - PAID * * `DRAFT` - DRAFT * * `APPROVED` - APPROVED * * `FAILED` - FAILED * * `CLOSED` - CLOSED */ export type PayrollRunRunState = Merge.hris.RunStateEnum | string;