import { HarvardEduPerson } from './harvardEduPerson';
export type SuccessResponse = {
    authenticationSuccess: {
        user: string;
        attributes: HarvardEduPerson;
    };
};
export type FailureResponse = {
    authenticationFailure: {
        code: string;
        description: string;
    };
};
export type HarvardKeyResponse = {
    serviceResponse: SuccessResponse | FailureResponse;
};
