import { GlideDateTime } from "../types/GlideDateTime"; import { CommitDetails } from "./CommitDetails"; export declare class Commits { getAuthorEmail(): string; getAuthorName(): string; getComments(): string; getCommitDetails(): CommitDetails; getCommitId(): string; getCommitterEmail(): string; getCommitterName(): string; getCurrentVersionPayload(metadataSysId?: string): string; getDateAuthored(): GlideDateTime; getDateCommitted(): GlideDateTime; getFileContent(sysMetadataSysId?: string): string; getLastErrorMessage(): string; isValid(): boolean; next(): boolean; constructor(); }