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