import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export declare class GeoMatchConstraint {
    Type: Value<string>;
    Value: Value<string>;
    constructor(properties: GeoMatchConstraint);
}
export interface GeoMatchSetProperties {
    GeoMatchConstraints?: List<GeoMatchConstraint>;
    Name: Value<string>;
}
export default class Inner_GeoMatchSet extends ResourceBase<GeoMatchSetProperties> {
    static GeoMatchConstraint: typeof GeoMatchConstraint;
    constructor(properties: GeoMatchSetProperties);
}
