export declare class DataBlock {
    id: number;
    slug: string;
    title: string;
    org: string;
    block: number;
    sensorGraphSlug: string;
    createdOn: Date;
    createdBy: Date;
    description: string;
    pid: string;
    onComplete: any;
    constructor(data: any);
    getPostPayload(): any;
}
