export declare const add: (files: string | string[]) => Promise<void>;
export declare const amendCommit: () => Promise<void>;
export declare const getCurrentBranchName: () => Promise<string>;
export declare const getFilesInLastCommit: () => Promise<string[]>;
export declare const getLastModifiedDate: (file: string) => Promise<string | undefined>;
export declare const getStagedFiles: () => Promise<string[]>;
