/**
* `ImageColourMode` describes the output colour mode of the normalized image.
* @see {@link SimplifiedDocumentNormalizerSettings.colourMode}
* */
export enum EnumImageColourMode {
    /** Output image in colour mode. */
    ICM_COLOUR,

    /** Output image in grayscale mode. */
    ICM_GRAYSCALE,

    /** Output image in binary mode. */
    ICM_BINARY
}
