import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class FieldToMatch { Type: Value; Data?: Value; constructor(properties: FieldToMatch); } export declare class XssMatchTuple { TextTransformation: Value; FieldToMatch: FieldToMatch; constructor(properties: XssMatchTuple); } export interface XssMatchSetProperties { XssMatchTuples?: List; Name: Value; } export default class XssMatchSet extends ResourceBase { static FieldToMatch: typeof FieldToMatch; static XssMatchTuple: typeof XssMatchTuple; constructor(properties: XssMatchSetProperties); }