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