import { INumeric } from "../types/_numeric";
import { ICharacter } from "../types/_character";
import { Table } from "../types";
export interface IConcatenateInput {
    source: (number | string | INumeric | ICharacter | Table)[];
    target: ICharacter;
    separatedBy?: number | string | INumeric | ICharacter;
    respectingBlanks?: boolean;
    lines?: boolean;
}
export declare function concatenate(input: IConcatenateInput): void;
