import { reopen, reset } from './hooks/useSettings'; import { consentStore, hasConsent } from './store'; import type { CookieConsentSettings } from './types/settings'; declare const mount: () => void; declare const setConsent: (name: string) => void; declare const getConsent: () => import("./types/settings").CookieConsent; declare const setDebugLogs: (active: boolean) => void; declare const setSettings: (settings: CookieConsentSettings) => void; export { mount, reopen, reset, getConsent, consentStore, hasConsent, setDebugLogs, setSettings, setConsent, }; export * from './types/settings';