import { CodeCatalystAuthentication } from './get-codecatalyst-authentication'; export interface IdentityResponse { name: string; email: string; headers?: { 'anti-csrftoken-a2z': string; }; } export declare const verifyIdentity: (endpoint: string, options: { authentication: CodeCatalystAuthentication; }) => Promise;