import { ResourceBase } from "../../resource";
import { Value, MapOf } from "../../data-types";
export declare class AttributePayload {
    Attributes?: MapOf<Value<string>>;
    constructor(properties: AttributePayload);
}
export interface ThingProperties {
    AttributePayload?: AttributePayload;
    ThingName?: Value<string>;
}
export default class Inner_Thing extends ResourceBase<ThingProperties> {
    static AttributePayload: typeof AttributePayload;
    constructor(properties: ThingProperties);
}
