export declare enum Type {
    CONTENT = "CONTENT",
    OWNERSHIP = "OWNERSHIP",
    OTHER = "OTHER",
    UNKNOWN = "UNKNOWN"
}
/**
 * disapprovalReasons
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
 */
export interface DisapprovalReasons {
    /** DisapprovalReason.Type|xsd:string|CONTENT,OWNERSHIP,OTHER,UNKNOWN */
    type?: Type | keyof typeof Type;
    /** xsd:string */
    details?: string;
}
