import { Tracker, TrackerResource } from '../services/TrackTileService'; export type ResourceSettings = { id?: string; patientId?: string; accountId: string; projectId: string; createDate: Date; value: number; tracker: Pick; }; export type Code = TrackerResource['code']['coding'][number]; declare const toFhirResource: (resourceType: 'Procedure' | 'Observation', from: ResourceSettings, codeIn?: Code) => TrackerResource; export { toFhirResource };