/**
 * 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 { UserProfileSubscription } from './UserProfileSubscription';
/**
 *
 * @export
 * @interface UserProfile
 */
export interface UserProfile {
    /**
     *
     * @type {string}
     * @memberof UserProfile
     */
    identityType?: UserProfileIdentityTypeEnum;
    /**
     *
     * @type {string}
     * @memberof UserProfile
     */
    id: string;
    /**
     *
     * @type {UserProfileSubscription}
     * @memberof UserProfile
     */
    subscription: UserProfileSubscription;
    /**
     *
     * @type {boolean}
     * @memberof UserProfile
     */
    suspended?: boolean;
}
/**
 * @export
 */
export declare const UserProfileIdentityTypeEnum: {
    readonly User: "user";
};
export type UserProfileIdentityTypeEnum = typeof UserProfileIdentityTypeEnum[keyof typeof UserProfileIdentityTypeEnum];
/**
 * Check if a given object implements the UserProfile interface.
 */
export declare function instanceOfUserProfile(value: object): boolean;
export declare function UserProfileFromJSON(json: any): UserProfile;
export declare function UserProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfile;
export declare function UserProfileToJSON(value?: UserProfile | null): any;
