/**
 * The insertion point type.
 */
export interface InsertionPoint {
    /**
     * The left context.
     */
    left: string;
    /**
     * The right context.
     */
    right: string;
}
