/**
 * Copyright (c) Jonathan Cardoso Machado. All Rights Reserved.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
/**
 * Object with constants for option `UPLOAD_FLAGS`
 *
 * `CURLULFLAG_ANSWERED` becomes `CurlUploadFlag.Answered`
 *
 * @public
 */
export declare enum CurlUploadFlag {
    /**
     * Sets the Answered flag for IMAP uploads
     */
    Answered = 1,
    /**
     * Sets the Deleted flag for IMAP uploads
     */
    Deleted = 2,
    /**
     * Sets the Draft flag for IMAP uploads
     */
    Draft = 4,
    /**
     * Sets the Flagged flag for IMAP uploads
     */
    Flagged = 8,
    /**
     * Sets the Seen flag for IMAP uploads
     */
    Seen = 16
}
//# sourceMappingURL=CurlUploadFlag.d.ts.map