import { Encounter } from 'fhir/r4b';
export interface ConversationCreateParams {
    /**
     * A valid FHIR Encounter resource JSON object. This resource will be created to represent the Conversation in the FHIR Store.
     */
    encounter: Encounter;
}
