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