/** * Privacy Notice Text Content * * Contains the privacy notice content for display to users. * Structured for GDPR compliance (Articles 13/14). * * Added by Pantheon Security for enterprise compliance support. */ import type { PrivacyNotice } from "./types.js"; /** * Current privacy notice version */ export declare const PRIVACY_NOTICE_VERSION = "1.0.0"; /** * Full privacy notice content */ export declare const PRIVACY_NOTICE: PrivacyNotice; /** * CLI-formatted privacy notice for terminal display */ export declare function getPrivacyNoticeCLI(): string; /** * Compact privacy notice for JSON responses */ export declare function getPrivacyNoticeCompact(): { version: string; summary: string; data_collected: string[]; purposes: string[]; rights: string[]; full_notice_url: string; }; /** * Get structured privacy notice for MCP tool response */ export declare function getPrivacyNoticeStructured(): { version: string; effective_date: string; data_controller: string; data_collected: string[]; purposes: string[]; legal_basis: string[]; retention: string; rights: string[]; contact: string; }; /** * Get data processing agreement summary */ export declare function getProcessingAgreement(): { version: string; processor: string; sub_processors: string[]; data_location: string; security_measures: string[]; breach_notification: string; };