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