interface Props { /** Which CREATE SOMETHING property this policy is for */ property: 'io' | 'space' | 'agency' | 'ltd' | 'lms'; /** The domain for this property */ domain: string; /** Last updated date string */ lastUpdated?: string; /** Contact email for privacy requests */ contactEmail?: string; } declare const PrivacyPolicyContent: import("svelte").Component; type PrivacyPolicyContent = ReturnType; export default PrivacyPolicyContent;