import { InjectionToken } from '@angular/core'; import { NgxWigComponent } from './ngx-wig.component'; export declare type commandFunction = (ctx: NgxWigComponent) => void; export interface TButton { label?: string; icon?: string; title?: string; command?: string | commandFunction; styleClass?: string; } export interface TButtonLibrary { [name: string]: TButton; } export declare const DEFAULT_LIBRARY_BUTTONS: TButtonLibrary; export declare const CUSTOM_LIBRARY_BUTTONS: TButtonLibrary; export declare const BUTTONS: InjectionToken;