/**
 * 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 type { ServiceAccountProfile } from './ServiceAccountProfile';
import type { UserProfile } from './UserProfile';
/**
 * @type Profile
 *
 * @export
 */
export type Profile = {
    identityType: 'service_account';
} & ServiceAccountProfile | {
    identityType: 'user';
} & UserProfile;
export declare function ProfileFromJSON(json: any): Profile;
export declare function ProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): Profile;
export declare function ProfileToJSON(value?: Profile | null): any;
