import { BannerTemplate } from '../types'; export declare const DEFAULT_BANNER_TEMPLATES: BannerTemplate[]; export declare const SOCIAL_PLATFORMS: { readonly facebook: { readonly name: "Facebook"; readonly icon: "facebook"; readonly color: "#1877f2"; readonly shareUrl: "https://www.facebook.com/sharer/sharer.php?u={url}"; }; readonly instagram: { readonly name: "Instagram"; readonly icon: "instagram"; readonly color: "#e4405f"; readonly shareUrl: "https://www.instagram.com/"; }; readonly twitter: { readonly name: "Twitter/X"; readonly icon: "twitter"; readonly color: "#1da1f2"; readonly shareUrl: "https://twitter.com/intent/tweet?text={text}&url={url}&hashtags={tags}"; }; readonly linkedin: { readonly name: "LinkedIn"; readonly icon: "linkedin"; readonly color: "#0077b5"; readonly shareUrl: "https://www.linkedin.com/sharing/share-offsite/?url={url}"; }; readonly whatsapp: { readonly name: "WhatsApp"; readonly icon: "whatsapp"; readonly color: "#25d366"; readonly shareUrl: "https://wa.me/?text={text}%20{url}"; }; readonly telegram: { readonly name: "Telegram"; readonly icon: "send"; readonly color: "#0088cc"; readonly shareUrl: "https://t.me/share/url?url={url}&text={text}"; }; readonly 'copy-link': { readonly name: "Copy Link"; readonly icon: "link"; readonly color: "#6c757d"; readonly shareUrl: ""; }; readonly more: { readonly name: "More"; readonly icon: "ellipsis-h"; readonly color: "#6c757d"; readonly shareUrl: ""; }; }; export declare const READER_LEVELS: { level: number; name: string; minPoints: number; maxPoints: number; }[]; export declare const DEFAULT_SHARE_MESSAGES: { readonly bookCompletion: readonly ["Just finished reading '{title}' by {author}! 📚", "Another great book completed: '{title}' 🎉", "Highly recommend '{title}' by {author}. Must read! ⭐"]; readonly readingProgress: readonly ["Making great progress on '{title}' - {percentage}% complete! 📖", "Currently enjoying '{title}' by {author}. {pagesRead} pages read so far! 💪", "On page {currentPage} of '{title}'. Loving this book! ❤️"]; readonly readingGoal: readonly ["Smashed my reading goal this month with {pages} pages read! 🎯", "{pages} pages this month! Feeling accomplished with my reading progress 📚", "Monthly reading goal achieved: {pages} pages read! Who's next? 📖"]; readonly readingStreak: readonly ["On a {streak}-day reading streak! Consistency is key 🔥", "{streak} days of reading in a row! Building better habits one book at a time 💪", "Reading streak: {streak} days and counting! 📚✨"]; };