/**
 * Inserts a string at a given index.
 */
declare function insert(string: any, index: any, partial: any): any;
export default insert;
