/** * Rate per hour the worker should be paid. */ export type PayRate = number; /** * The total pay amount that should be paid. */ export type PayAmount = number;