import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export interface InstanceProfileProperties {
    InstanceProfileName?: Value<string>;
    Path?: Value<string>;
    Roles: List<Value<string>>;
}
export default class Inner_InstanceProfile extends ResourceBase<InstanceProfileProperties> {
    constructor(properties: InstanceProfileProperties);
}
