import { ACTOR, CODEABLE_CONCEPT } from "../../config";
import { FhirObjectsMethods } from "../../Interfaces";
import ResourceMain from "../ResourceMai";
export interface PARTICIPANT {
    actor: ACTOR;
    status: "accepted" | "declined" | "tentative" | "needs-action";
    required?: "required" | "optional" | "information-only";
    type?: CODEABLE_CONCEPT[];
}
export declare class Participant extends ResourceMain implements FhirObjectsMethods {
    private participant;
    setObject(_paticipant: PARTICIPANT): void;
    getJson(): any;
    getObject(options: any): PARTICIPANT;
}
//# sourceMappingURL=Partipant.d.ts.map