import { Moment } from 'moment'; export declare class Draft { id: number; type: string; document: T; created: Moment; updated: Moment; constructor(id: number, type: string, document: T, created: Moment, updated: Moment); }