import type { FunctionDefinition } from '../../definition_types'; /** * URL-encodes the input. All characters are percent-encoded except for alphanumerics, `.`, `-`, `_`, and `~`. Spaces are encoded as `+`. * * @example * ROW u = "https://example.com/?x=foo bar&y=baz" | EVAL u = URL_ENCODE(u) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=url_encode.d.ts.map