import { String } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IInsertInput {
    val: ICharacter;
    sub: ICharacter;
    off?: INumeric;
}
export declare function insert(input: IInsertInput): String;
