import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class FieldToMatch { Data?: Value; Type: Value; constructor(properties: FieldToMatch); } export declare class ByteMatchTuple { FieldToMatch: FieldToMatch; PositionalConstraint: Value; TargetString?: Value; TargetStringBase64?: Value; TextTransformation: Value; constructor(properties: ByteMatchTuple); } export interface ByteMatchSetProperties { ByteMatchTuples?: List; Name: Value; } export default class ByteMatchSet extends ResourceBase { static FieldToMatch: typeof FieldToMatch; static ByteMatchTuple: typeof ByteMatchTuple; constructor(properties: ByteMatchSetProperties); }