import type { QuantityTypeArg } from "@itwin/core-frontend"; import { type FormatterSpec, type ParserSpec } from "@itwin/core-quantity"; interface UseQuantityInfoProps { type: QuantityTypeArg | undefined; } /** * Hook that finds the formatter and parser in `IModelApp.quantityFormatter` for a given quantity type. * @internal */ export declare function useQuantityInfo({ type }: UseQuantityInfoProps): { defaultFormatter: FormatterSpec | undefined; highPrecisionFormatter: FormatterSpec | undefined; parser: ParserSpec | undefined; }; export {}; //# sourceMappingURL=UseQuantityInfo.d.ts.map