import { DetailedSpec } from './targeting-spec-detailed.interface'; import { GeoSpec } from './targeting-spec-geo.interface'; import { GendersSpec } from './targeting-spec-gender.interface'; import { AgeSpec } from './targeting-spec-age.interface'; import { LocalesSpec } from './targeting-spec-locales.interface'; export interface TargetingSpec extends DetailedSpec, GendersSpec, AgeSpec, LocalesSpec { geo_locations?: GeoSpec; excluded_geo_locations?: GeoSpec; } export declare const targetingSpecInitial: TargetingSpec;