declare module fb { interface IToastService { toasts: fb.IToast[]; addToast(toast: fb.IToast): void; removeToastForField(uniqueId: string, field: string): void; removeToastsForEntity(entityType: number, entityId: number): void; removeToastsForUniqueId(uniqueId: string, notForFields?: string[]): void; resetToastTimer(uniqueId: string, field: string): void; } }