export interface ToolbarButton { text: string; image?: string; action: () => void; disabled?: boolean; key?: string; children?: ToolbarButton[]; }