export declare enum AutoNumberingSchemeType {
    /**
     * Lowercase alphabetic character enclosed in parentheses. Example: (a), (b),
     * (c), ...
     */
    alphaLcParenBoth = 0,
    /**
     * Uppercase alphabetic character enclosed in parentheses. Example: (A), (B),
     * (C), ...
     */
    alphaUcParenBoth = 1,
    /**
     * Lowercase alphabetic character followed by a closing parenthesis. Example:
     * a), b), c), ...
     */
    alphaLcParenRight = 2,
    /**
     * Uppercase alphabetic character followed by a closing parenthesis. Example:
     * A), B), C), ...
     */
    alphaUcParenRight = 3,
    /**
     * Lowercase Latin character followed by a period. Example: a., b., c., ...
     */
    alphaLcPeriod = 4,
    /**
     * Uppercase Latin character followed by a period. Example: A., B., C., ...
     */
    alphaUcPeriod = 5,
    /**
     * Arabic numeral enclosed in parentheses. Example: (1), (2), (3), ...
     */
    arabicParenBoth = 6,
    /**
     * Arabic numeral followed by a closing parenthesis. Example: 1), 2), 3), ...
     */
    arabicParenRight = 7,
    /**
     * Arabic numeral followed by a period. Example: 1., 2., 3., ...
     */
    arabicPeriod = 8,
    /**
     * Arabic numeral. Example: 1, 2, 3, ...
     */
    arabicPlain = 9,
    /**
     * Lowercase Roman numeral enclosed in parentheses. Example: (i), (ii), (iii),
     * ...
     */
    romanLcParenBoth = 10,
    /**
     * Uppercase Roman numeral enclosed in parentheses. Example: (I), (II), (III),
     * ...
     */
    romanUcParenBoth = 11,
    /**
     * Lowercase Roman numeral followed by a closing parenthesis. Example: i), ii),
     * iii), ...
     */
    romanLcParenRight = 12,
    /**
     * Uppercase Roman numeral followed by a closing parenthesis. Example: I), II),
     * III), ....
     */
    romanUcParenRight = 13,
    /**
     * Lowercase Roman numeral followed by a period. Example: i., ii., iii., ...
     */
    romanLcPeriod = 14,
    /**
     * Uppercase Roman numeral followed by a period. Example: I., II., III., ...
     */
    romanUcPeriod = 15,
    /**
     * Double byte circle numbers.
     */
    circleNumDbPlain = 16,
    /**
     * Wingdings black circle numbers.
     */
    circleNumWdBlackPlain = 17,
    /**
     * Wingdings white circle numbers.
     */
    circleNumWdWhitePlain = 18,
    /**
     * Double-byte Arabic numbers with double-byte period.
     */
    arabicDbPeriod = 19,
    /**
     * Double-byte Arabic numbers.
     */
    arabicDbPlain = 20,
    /**
     * Simplified Chinese with single-byte period.
     */
    ea1ChsPeriod = 21,
    /**
     * Simplified Chinese.
     */
    ea1ChsPlain = 22,
    /**
     * Traditional Chinese with single-byte period.
     */
    ea1ChtPeriod = 23,
    /**
     * Traditional Chinese.
     */
    ea1ChtPlain = 24,
    /**
     * Japanese with double-byte period.
     */
    ea1JpnChsDbPeriod = 25,
    /**
     * Japanese/Korean.
     */
    ea1JpnKorPlain = 26,
    /**
     * Japanese/Korean with single-byte period.
     */
    ea1JpnKorPeriod = 27,
    /**
     * Bidi Arabic 1 (AraAlpha) with ANSI minus symbol.
     */
    arabic1Minus = 28,
    /**
     * Bidi Arabic 2 (AraAbjad) with ANSI minus symbol.
     */
    arabic2Minus = 29,
    /**
     * Bidi Hebrew 2 with ANSI minus symbol.
     */
    hebrew2Minus = 30,
    /**
     * Thai alphabetic character followed by a period.
     */
    thaiAlphaPeriod = 31,
    /**
     * Thai alphabetic character followed by a closing parenthesis.
     */
    thaiAlphaParenRight = 32,
    /**
     * Thai alphabetic character enclosed by parentheses.
     */
    thaiAlphaParenBoth = 33,
    /**
     * Thai numeral followed by a period.
     */
    thaiNumPeriod = 34,
    /**
     * Thai numeral followed by a closing parenthesis.
     */
    thaiNumParenRight = 35,
    /**
     * Thai numeral enclosed in parentheses.
     */
    thaiNumParenBoth = 36,
    /**
     * Hindi alphabetic character followed by a period.
     */
    hindiAlphaPeriod = 37,
    /**
     * Hindi numeric character followed by a period.
     */
    hindiNumPeriod = 38,
    /**
     * Hindi numeric character followed by a closing parenthesis.
     */
    hindiNumParenRight = 39,
    /**
     * Hindi alphabetic character followed by a period.
     */
    hindiAlpha1Period = 40
}
//# sourceMappingURL=AutoNumberingScheme.d.ts.map