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