/**
 * AdsConsentStatus enum.
 */
export declare enum AdsConsentStatus {
    /**
     * Unknown consent status, AdsConsent.requestInfoUpdate needs to be called to update it.
     */
    UNKNOWN = "UNKNOWN",
    /**
     * User consent required but not yet obtained.
     */
    REQUIRED = "REQUIRED",
    /**
     * User consent not required.
     */
    NOT_REQUIRED = "NOT_REQUIRED",
    /**
     * User consent already obtained.
     */
    OBTAINED = "OBTAINED"
}
//# sourceMappingURL=AdsConsentStatus.d.ts.map