import type { FunctionDefinition } from '../../definition_types'; /** * Returns a boolean that indicates whether a keyword string ends with another string. * * @example * FROM employees * | KEEP last_name * | EVAL ln_E = ENDS_WITH(last_name, "d") */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=ends_with.d.ts.map