export interface IToolbarItemTextOptionsBase {
    text?: string;
    displayAfterEditor?: boolean;
}
export interface IToolbarItemTextOptions {
    textOptions?: IToolbarItemTextOptionsBase;
}
