/** @format */
/**
 * Enum representing different color modes in PSD files.
 */
export declare enum PsdColorMode {
    /** Bitmap color mode */
    bitmap = 0,
    /** Grayscale color mode */
    grayscale = 1,
    /** Indexed color mode */
    indexed = 2,
    /** RGB color mode */
    rgb = 3,
    /** CMYK color mode */
    cmyk = 4,
    /** Multi-channel color mode */
    multiChannel = 5,
    /** DuoTone color mode */
    duoTone = 6,
    /** Lab color mode */
    lab = 7
}
