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