import type { QuantitySampleTyped } from '../types/QuantitySample'; import type { UnitForIdentifier } from '../types/QuantityType'; import type { QuantityTypeIdentifier } from '../types/QuantityTypeIdentifier'; /** * @returns the most recent sample for the given quantity type. */ export declare function useQuantitySampleById(identifier: T, uuid: string, options?: { /** The unit to use for the sample. */ unit?: UnitForIdentifier; }): { sample: QuantitySampleTyped | undefined; isLoading: boolean; error: Error | null; }; export default useQuantitySampleById;