import { ServerCall } from './server-call'; import { Observable } from 'rxjs'; import { CoreServices } from '../services'; export interface NavButton { text: string; linkType?: 'portal'; portalData?: { type: 'actionPanel' | 'modal'; paramFunc: ((svc: CoreServices) => void); }; callback?: (p: any) => void; nextNode?: string; nextState?: number; serverFirst?: boolean; location?: 'left' | 'center' | 'right'; color?: string; serverCalls?: { [id: string]: ServerCall; }; visible?: (svc: CoreServices) => Observable; disable?: (svc: CoreServices) => Observable; } //# sourceMappingURL=nav_button.d.ts.map