export declare const URL_PATTERNS: { readonly WEBSITE: "^https?:\\/\\/[a-zA-Z0-9-_.]+\\.[a-zA-Z]{2,}(?:\\/[^\\s<>]*)?$"; readonly X: "^https?:\\/\\/(x\\.com|x\\.com)\\/[a-zA-Z0-9_]{1,15}$"; readonly TELEGRAM: "^https?:\\/\\/t\\.me\\/[a-zA-Z0-9_]{5,32}$"; readonly DISCORD: "^https?:\\/\\/(discord\\.gg|discord\\.com\\/invite)\\/[a-zA-Z0-9-]{2,32}$"; }; export declare const URL_PATTERN_MESSAGES: { readonly WEBSITE: "Please enter a valid website URL"; readonly X: "Please enter a valid Twitter/X profile URL"; readonly TELEGRAM: "Please enter a valid Telegram group URL"; readonly DISCORD: "Please enter a valid Discord invite URL"; };