export interface IAudit { createdBy?: string; createdDate?: string; updatedBy?: string; updatedDate?: string; } export declare class Audit { createdBy: string; createdDate: string; updatedBy: string; updatedDate: string; constructor(data?: IAudit); }