import type { PropertyDomain } from '../analytics/types'; interface Props { data: { success: boolean; error: string | null; email: string | null; }; property: PropertyDomain; } declare const UnsubscribePage: import("svelte").Component; type UnsubscribePage = ReturnType; export default UnsubscribePage;