module fb { export interface IGridOptions { selectedItems: any; columns: IGridColumn[]; currentSort?: any; rows: any; pagination?: boolean; itemsPerPage?: number; currentPage?: number; checkboxColumnWidth?: number; iconColumnWidth?: number; inColumnSearch?: boolean; warningIsAllSelectedInPage: boolean; warningIsAllSelected: boolean; selectableItemsPerPage: number[]; traeffarText: string; selectableBy?: string; showNavIcon: boolean; onRowClicked? (row: any); titleForRow?(row: any): string; showIcon(row: any): boolean; getSortColumnForStatus(): IGridColumn; getIconTooltip(row: any): string; isIconColumn(row: any): boolean; iconUrl(row: any): string; isMatchedHighlightedBevakning(row: any, col: any): boolean; isMatchedBevakning(row: any, col: any): boolean; showOverlayIcon(row: any): any; } }