import { String } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export declare function concat(left: INumeric | ICharacter | string | number | any[], right: INumeric | ICharacter | string | number): String;
