import * as Azure from "azure"; export declare abstract class Entity implements Azure.Entity { value: string; abstract PartitionKey: string; abstract RowKey: string; [property: string]: string | number | boolean | Date; constructor(data: T, value?: string); }