import { XLMBaseEntity } from 'lib/factories/xml-entities/base-entity';
import { ContextType } from 'lib/interfaces/xliff12.interfaces';
export interface ContextTagAttr {
    contextType: ContextType;
    matchMandatory?: string;
    crc?: string;
}
/**
 * Context Tag
 */
export declare class ContextTag extends XLMBaseEntity<ContextTagAttr> {
    tagName: string;
}
