/**
 * 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 { EmailParams } from './EmailParams';
/**
 *
 * @export
 * @interface EmailAction
 */
export interface EmailAction {
    /**
     *
     * @type {string}
     * @memberof EmailAction
     */
    action?: EmailActionActionEnum;
    /**
     *
     * @type {EmailParams}
     * @memberof EmailAction
     */
    params: EmailParams;
}
/**
 * @export
 */
export declare const EmailActionActionEnum: {
    readonly Email: "email";
};
export type EmailActionActionEnum = typeof EmailActionActionEnum[keyof typeof EmailActionActionEnum];
/**
 * Check if a given object implements the EmailAction interface.
 */
export declare function instanceOfEmailAction(value: object): boolean;
export declare function EmailActionFromJSON(json: any): EmailAction;
export declare function EmailActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailAction;
export declare function EmailActionToJSON(value?: EmailAction | null): any;
