export interface ITextFormatActions { createLink: (link: string, description?: string) => string; createBulletItem: (str?: string) => string; createTitle: (str: string) => string; createHeading: (str: string, level: number) => string; }