import type { ReleaserGithubAction } from './releaser.js'; export declare function ifReleaseCommit(releaser: ReleaserGithubAction): Promise; /** * Detect whether the current event is a supported command comment * (`!simple-release/set-options` or `!simple-release/set-preamble`) on an open * release pull request. * @returns The target branch when it is such a comment, `false` when it is a * comment event but not a command comment, or `null` when it is not a comment * event at all. */ export declare function ifCommandComment(): string | false | null; /** * @deprecated Renamed to {@link ifCommandComment} — it now covers all * `!simple-release/*` command comments, not only `set-options`. */ export declare const ifSetOptionsComment: typeof ifCommandComment; //# sourceMappingURL=conditions.d.ts.map