import { InsertionPoint } from "./InsertionPoint";
/**
 * The dictation type.
 */
export interface Dictation {
    /**
     * The insertion point.
     */
    insertionPoint: InsertionPoint;
}
