import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ThingTypeProperties { ThingTypeDescription?: Value; SearchableAttributes?: List>; constructor(properties: ThingTypeProperties); } export interface ThingTypeProperties { DeprecateThingType?: Value; ThingTypeName?: Value; ThingTypeProperties?: ThingTypeProperties; Tags?: List; } export default class ThingType extends ResourceBase { static ThingTypeProperties: typeof ThingTypeProperties; constructor(properties?: ThingTypeProperties); }