interface Comment { body?: string; author_association: string; } export declare const SET_OPTION_COMMAND = "!simple-release/set-options"; export declare const SET_PREAMBLE_COMMAND = "!simple-release/set-preamble"; /** * All supported pull request comment commands. */ export declare const COMMANDS: string[]; /** * Whether the comment body is one of the supported command comments. * @param body - The comment body. * @returns Whether the body starts with a supported command. */ export declare function isCommandComment(body: string | undefined): boolean; export declare function parseSetOptionsComment(comment: Comment): string | null; export interface SetPreamble { /** * The full package name the preamble targets, or undefined for the whole release. */ name?: string; /** * The markdown to insert into the changelog preamble. */ preamble: string; } export declare function parseSetPreambleComment(comment: Comment): SetPreamble | null; export {}; //# sourceMappingURL=comment.d.ts.map