import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface UserPoolUserToGroupAttachmentProperties {
    GroupName: Value<string>;
    UserPoolId: Value<string>;
    Username: Value<string>;
}
export default class Inner_UserPoolUserToGroupAttachment extends ResourceBase<UserPoolUserToGroupAttachmentProperties> {
    constructor(properties: UserPoolUserToGroupAttachmentProperties);
}
