import { EventEmitter } from "../../stencil-public-runtime"; export declare class GdprConsent { cookieName: string; consent: string; isEU: boolean; el: HTMLElement; hidden: boolean; componentWillLoad(): Promise; consentEmitter: EventEmitter; handleRevoke(): void; handleReset(): void; URLResetConsent(search: string): boolean; URLRevokedConsent(search: string): boolean; getConsentCookie(): string; parseConsentCookieValue(consentCookie: string): "granted" | "revoked" | "indeterminate"; grantConsentCookie(): Promise; revokeConsentCookie(): Promise; resetConsentCookie(): Promise; render(): any; }