/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * 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.
 */
/**
 *
 * @export
 * @interface UserProfileSubscription
 */
export interface UserProfileSubscription {
    /**
     *
     * @type {string}
     * @memberof UserProfileSubscription
     */
    status: string;
    /**
     *
     * @type {string}
     * @memberof UserProfileSubscription
     */
    plan: string;
    /**
     *
     * @type {Date}
     * @memberof UserProfileSubscription
     */
    periodStart?: Date | null;
    /**
     *
     * @type {Date}
     * @memberof UserProfileSubscription
     */
    periodEnd?: Date | null;
}
/**
 * Check if a given object implements the UserProfileSubscription interface.
 */
export declare function instanceOfUserProfileSubscription(value: object): value is UserProfileSubscription;
export declare function UserProfileSubscriptionFromJSON(json: any): UserProfileSubscription;
export declare function UserProfileSubscriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfileSubscription;
export declare function UserProfileSubscriptionToJSON(json: any): UserProfileSubscription;
export declare function UserProfileSubscriptionToJSONTyped(value?: UserProfileSubscription | null, ignoreDiscriminator?: boolean): any;
