import { TaskStateEnum } from '../changeEmail/TaskStateEnum';
/** Task running an email change on an account */
export interface Task {
    /** End date of that request */
    dateDone?: string;
    /** Creation date of that request */
    dateRequest: string;
    /**  */
    id: number;
    /** The email address to change for */
    newEmail: string;
    /** Current state of the request */
    state: TaskStateEnum;
}
//# sourceMappingURL=Task.d.ts.map