/**
 * An enumeration providing values to describe the data format of parsed data.
 */
export declare class ParserDataFormat {
    /**
     * Describes the format of a binary file.
     */
    static BINARY: string;
    /**
     * Describes the format of a plain text file.
     */
    static PLAIN_TEXT: string;
    /**
     * Describes the format of an image file
     */
    static IMAGE: string;
}
//# sourceMappingURL=ParserDataFormat.d.ts.map