import { ClaimCMS1500 } from './ClaimCMS1500';
export interface RcmSubmitProfessionalClaimParams {
    /**
     * Enabling testMode will perform a dry run of claim submission. The claim will not be sent to payers, but the request processing and response will remain the same.
     */
    testMode?: boolean;
    cms1500: ClaimCMS1500;
    submitterOrganizationName: string;
    payerId: string;
}
