import { ICharacter } from "../types/_character";
import { Table } from "../types";
export interface ISplitOptions {
    source: ICharacter | string;
    at: ICharacter | string;
    table?: Table;
    targets?: ICharacter[];
}
export declare function split(param: ISplitOptions): void;
