import type { DeviceType } from "../generated/graphql-api/graphql"; /** * Hook for translating device types. * * @returns {object} `{ deviceTypeDisplayNames, getDeviceTypeTranslation }` — an object containing the pre-built record of all device type display names (e.g. for filter lists) and a single-lookup function for one device type at a time. */ export declare const useDeviceTypeTranslations: () => { deviceTypeDisplayNames: Record; getDeviceTypeTranslation: (deviceType: DeviceType) => string; };