import { IElement } from 'fhirtypes/dist/r4';
export interface IBuildable<T> {
    fromJSON?(json: unknown): this;
    addPrimitiveExtension?(param: string, extension: IElement): this;
    build(): T;
}
