import type { FunctionDefinition } from '../../definition_types'; /** * Returns the substring that extracts *length* chars from *string* starting from the left. * * @example * FROM employees * | KEEP last_name * | EVAL left = LEFT(last_name, 3) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=left.d.ts.map