import { IExtendedCommit } from "../log-parse"; /** Construct a dummy commit for testing. */ declare const makeCommitFromMsg: (subject: string, options?: { /** Name of the committer */ name?: string; /** Hash of the commit */ hash?: string; /** Email of the committer */ email?: string; /** Labels on the commit */ labels?: string[]; /** Username of the committer */ username?: string; /** Packages effected by the commit */ packages?: string[]; /** The type of user */ type?: "Bot" | "User"; /** PR info for the commit */ pullRequest?: { /** PR number attached to commit */ number: number; }; /** Files included in commit */ files?: string[]; }) => IExtendedCommit; export default makeCommitFromMsg; //# sourceMappingURL=make-commit-from-msg.d.ts.map