/**
 * Copyright (c) Microblink Ltd. All rights reserved.
 *
 */
import { AlphabetType } from "./AlphabetType";
import { FieldType } from "./FieldType";
export declare class DetailedFieldType {
    fieldType: FieldType;
    alphabetType: AlphabetType;
    constructor(fieldType: FieldType, alphabetType: AlphabetType);
}
