export declare const ReportTransmissionCode: { /** * By Mail */ readonly Cbm: "BM"; /** * Electronically Only */ readonly Cel: "EL"; /** * By Fax */ readonly Cfx: "FX"; }; export type ReportTransmissionCode = (typeof ReportTransmissionCode)[keyof typeof ReportTransmissionCode];