/** * Utility function to encode form data for application/x-www-form-urlencoded */ export declare function encodeFormData(data: Record): string; /** * Fetch POST utility for making API requests */ export declare function fetchPost(url: string, data: Record, responseType?: 'json' | 'text', headers?: Record): Promise;