declare module fb { interface IUniqueIdService { isUsed(identifier: string): boolean; getUniqueId(identifier: string): string; getUniqueIdNoLimit(identifier: string): string; removeUniqueId(id: string): void; } }