import { default as React } from 'react'; import { UseCookieConsent } from './use-cookie-consent.hook'; export declare const useAbyssCookieConsent: () => UseCookieConsent; export interface AbyssCookieConsentProviderProps { children: React.ReactNode; consentVersion: string; isAuthenticated: boolean; domain?: string; privacyLinkHref?: string; renderBanner?: (api: UseCookieConsent) => React.ReactNode; } export declare const AbyssCookieConsentProvider: React.FC;