import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client"; import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2"; import type * as _Ontologies from "../_components.js"; /** * Get the latest value of a property backed by a timeseries. If a specific geotime series integration has both a history and a live integration, we will give precedence to the live integration. * * @public * * Required Scopes: [api:ontologies-read] * URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/timeseries/{propertyName}/latestValue */ export declare function getLatestValue($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [ ontology: _Ontologies.OntologyIdentifier, objectType: _Ontologies.ObjectTypeApiName, primaryKey: _Ontologies.PropertyValueEscapedString, propertyName: _Ontologies.PropertyApiName, $queryParams?: { sdkPackageRid?: _Ontologies.SdkPackageRid | undefined; sdkVersion?: _Ontologies.SdkVersion | undefined; } ]): Promise<_Ontologies.TimeseriesEntry | undefined>; /** * Stream all of the points of a time series property (this includes geotime series references). * * @public * * Required Scopes: [api:ontologies-read] * URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/timeseries/{property}/streamValues */ export declare function streamValues($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [ ontology: _Ontologies.OntologyIdentifier, objectType: _Ontologies.ObjectTypeApiName, primaryKey: _Ontologies.PropertyValueEscapedString, property: _Ontologies.PropertyApiName, $body: _Ontologies.StreamTimeSeriesValuesRequest, $queryParams?: { sdkPackageRid?: _Ontologies.SdkPackageRid | undefined; sdkVersion?: _Ontologies.SdkVersion | undefined; } ]): Promise; //# sourceMappingURL=TimeSeriesValueBankProperty.d.ts.map