import { Encounter } from 'fhir/r4b';
/**
 * Successfully created a Conversation.
 */
export interface ConversationCreateResponse {
    /**
     * The FHIR Encounter resource that represents the Conversation in the FHIR Store modified to include the https://extensions.fhir.oystehr.com/encounter-virtual-service-pre-release extension which holds the Twilio Conversation SID.
     */
    encounter: Encounter;
}
