/**
 * Text to be displayed in the sidecar toolbar
 *
 */
type ToolbarTextType = 'info' | 'success' | 'warning' | 'error';
export declare function isSupportedToolbarTextType(type: string): type is ToolbarTextType;
type ToolbarTextValue = string | Element;
export interface ToolbarAlert {
    type: ToolbarTextType;
    title: string;
    body?: string;
}
export interface ToolbarText {
    type: ToolbarTextType;
    text: ToolbarTextValue;
    alerts?: ToolbarAlert[];
}
export {};
