import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class GeoMatchConstraint { Type: Value; Value: Value; constructor(properties: GeoMatchConstraint); } export interface GeoMatchSetProperties { GeoMatchConstraints?: List; Name: Value; } export default class GeoMatchSet extends ResourceBase { static GeoMatchConstraint: typeof GeoMatchConstraint; constructor(properties: GeoMatchSetProperties); }