/** * Base URL Helper * * Provides a single source of truth for the public base URL of the application. * Used for webhooks, callbacks, and other external-facing URLs. */ /** * Get the base URL for the application * * Priority order: * 1. BASE_URL (server-side) * 2. NEXT_PUBLIC_BASE_URL (client/server-side) * 3. Default: http://localhost:4000 (development) * * @returns Normalized base URL */ export declare function getBaseUrl(): string; /** * Get the webhook base URL * * If USE_NGROK_WEBHOOK_BASE is true and NGROK_BASE_URL is set, * returns the ngrok URL for development testing. * Otherwise, returns the standard base URL. * * @returns Webhook base URL */ export declare function getWebhookBaseUrl(): string; /** * Get the full webhook URL for Jira * * @returns Full webhook URL (e.g., https://ticket-mate.app/api/webhooks/jira) */ export declare function getJiraWebhookUrl(): string; //# sourceMappingURL=baseUrl.d.ts.map