/** * Returns `true` if `message` matches the Conventional Commits 1.0.0 * header format restricted to the Angular preset's type allowlist. * Body / footer content is not validated. See the regex JSDoc above * for the type-allowlist caveat. * * @example * isConventionalCommit("feat: add login"); // true * isConventionalCommit("feat(auth): add login"); // true * isConventionalCommit("feat!: drop legacy login"); // true * isConventionalCommit("feat(auth)!: drop legacy login"); // true * isConventionalCommit("Update README"); // false * isConventionalCommit("feat:no-space"); // false */ export declare function isConventionalCommit(message: string): boolean; //# sourceMappingURL=conventional.d.ts.map