import * as React from 'react'; import { IRemoteTableColumn, ISortChangeEvent, RoomLevelPowerConsumptionDto } from '../../..'; export declare const getLocationAnalyticsColumns: (roomsData: RoomLevelPowerConsumptionDto[]) => IRemoteTableColumn[]; export interface ILocationAnalyticsTableProps { tableData: RoomLevelPowerConsumptionDto[]; onRowClick: (rowId: string) => void; onSortChange: (event: ISortChangeEvent) => void; } declare const LocationAnalyticsTable: React.FunctionComponent; export default LocationAnalyticsTable;