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