import { Role } from "../../user/role"; export declare class InvitationResponseDto { code: string; role: Role; email: string; targetAwsRegion: string; errorMessage?: string; constructor(code: string, role: Role, email: string, targetAwsRegion: string, errorMessage?: string); }