import type { FunctionDefinition } from '../../definition_types'; /** * Returns a string constructed by concatenating `string` with itself the specified `number` of times. * * @example * ROW a = "Hello!" * | EVAL triple_a = REPEAT(a, 3) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=repeat.d.ts.map