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