import { ToolbarType } from '../../types/toolbar'; export type TemplateType = Partial>; export type TemplateVal = { content: string; selection: { anchor: number; head: number; }; }; declare const template: TemplateType; export { template };