/** The medium (paper or electronic) via which we intended to submit the claim. The clearinghouse to which we sent the claim may use a different medium in certain cases, e.g., if the payer does not support electronic claims. */ export declare const IntendedSubmissionMedium: { readonly Paper: "paper"; readonly Electronic: "electronic"; }; export type IntendedSubmissionMedium = (typeof IntendedSubmissionMedium)[keyof typeof IntendedSubmissionMedium];