import { AMP_CONSENT_ACTION, AMP_CONSENT_STRING_TYPE, AMP_CONSENT_TYPE } from '../enums/enums';
export interface ConsentActions {
    type: AMP_CONSENT_TYPE;
    action: AMP_CONSENT_ACTION;
}
export interface ConsentMetadata {
    consentStringType?: AMP_CONSENT_STRING_TYPE;
    gdprApplies?: boolean;
    additionalConsent?: string;
}
