/**
 * AskNews API
 * AskNews API
 *
 * The version of the OpenAPI document: 0.18.6
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import * as runtime from '../runtime';
import type { ProfileResponse } from '../models/index';
/**
 *
 */
export declare class ProfileApi extends runtime.BaseAPI {
    /**
     * Get the current profile
     * Get the current user\'s profile
     */
    getUserProfileRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProfileResponse>>;
    /**
     * Get the current profile
     * Get the current user\'s profile
     */
    getUserProfile(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProfileResponse>;
}
