/** * Encodes a string to be used in a URL. * @param value - The string to encode. * @returns The encoded string. */ declare const encodeUriComponent: (value: string) => string; export default encodeUriComponent;