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