declare module fb { interface IFbModalScope extends ng.IScope { show: boolean; header: string; headerKey: string; contentWidth: number; backgroundDismissable: any; dismissable?: any; isDisabled: boolean; dimensions: fb.IFbModalDimensions; hideModal(): void; okCancel: boolean; okButtonText: string; cancelButtonText: string; okCallback: any; cancelCallback: any; onOKButtonClick(): any; onCancelButtonClick(): any; } interface IFbModalDimensions extends Object { width?: number; height?: number; minWidth?: number; minHeight?: number; maxWidth?: number; maxHeight?: number; } }