import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface ThingPrincipalAttachmentProperties {
    Principal: Value<string>;
    ThingName: Value<string>;
}
export default class Inner_ThingPrincipalAttachment extends ResourceBase<ThingPrincipalAttachmentProperties> {
    constructor(properties: ThingPrincipalAttachmentProperties);
}
