import { type AggregateType } from '@aws-sdk/client-iotsitewise'; import type { DataStreamsStore, DataStreamStore } from './types'; /** * Get Best Stream Store * * Returns the best data stream store based on what resolution and/or aggregation we would like to visualize * on connected widgets * This will be the store with the smallest resolution which is not smaller than the requested resolution, * that is not in a loading or error state. */ export declare const getBestStreamStore: (dataStreamId: string, requestResolution: number, store: DataStreamsStore, requestAggregation?: AggregateType) => undefined | DataStreamStore; //# sourceMappingURL=bestStreamStore.d.ts.map