export declare enum DeclarationType {
    NONE = "NONE",
    DECLARED = "DECLARED",
    UNKNOWN = "UNKNOWN"
}
/**
 * thirdPartyDataDeclaration
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
 */
export interface ThirdPartyDataDeclaration {
    /** DeclarationType|xsd:string|NONE,DECLARED,UNKNOWN */
    declarationType?: DeclarationType | keyof typeof DeclarationType;
    /** xsd:long */
    thirdPartyCompanyIds?: Array<number>;
}
