import { Communication } from 'fhir/r4b';
/**
 * Successfully sent a fax.
 */
export interface FaxSendResponse {
    /**
     * The FHIR Communication resource that represents the sent fax in the FHIR Store modified to include the https://extensions.fhir.oystehr.com/outbound-fax-status extension which holds the fax status that will be updated automatically. If a `recipientNumber` is used instead of a `recipient`, the resource will contain a contained Practitioner resource with the fax number.
     */
    communicationResource: Communication;
}
