/** Code indicating the reason why a request was delayed */ export declare const DelayReasonCode: { /** * Proof of Eligibility Unknown or Unavailable */ readonly C1: "1"; /** * Litigation */ readonly C2: "2"; /** * Authorization Delays */ readonly C3: "3"; /** * Delay in Certifying Provider */ readonly C4: "4"; /** * Delay in Supplying Billing Forms */ readonly C5: "5"; /** * Delay in Delivery of Custom-made Appliances */ readonly C6: "6"; /** * Third Party Processing Delay */ readonly C7: "7"; /** * Delay in Eligibility Determination */ readonly C8: "8"; /** * Original Claim Rejected or Denied Due to a Reason Unrelated to the Billing Limitation Rules */ readonly C9: "9"; /** * Administration Delay in the Prior Approval Process */ readonly C10: "10"; /** * Other */ readonly C11: "11"; /** * Natural Disaster */ readonly C15: "15"; /** * Lack of Information */ readonly C16: "16"; /** * No response to initial request */ readonly C17: "17"; }; export type DelayReasonCode = (typeof DelayReasonCode)[keyof typeof DelayReasonCode];