/** * Safely encodes a string using encodeURIComponent, ensuring it is not encoded multiple times. * * - If the input is already encoded, it returns the original value. * - If the input is not encoded, it encodes it. * - Handles malformed input gracefully by encoding it if decoding fails. * * @param value - The input string to be encoded. * @returns - A safely encoded string. */ export declare function safeEncodeURIComponent(value: string): string; //# sourceMappingURL=safeEncodeURIComponent.d.ts.map