interface Props { /** URL to the privacy policy page */ privacyPolicyUrl?: string; /** Callback when consent is accepted */ onAccept?: () => void; } declare const CookieConsent: import("svelte").Component; type CookieConsent = ReturnType; export default CookieConsent;