import { Config } from './utils'; import { EnsureCommentConfig } from '../common'; export declare type CommentsConfig = Pick; interface EnsureBitBucketCommentConfig extends EnsureCommentConfig { config: CommentsConfig; } export declare function ensureComment({ config, number: prNo, topic, content, }: EnsureBitBucketCommentConfig): Promise; export declare function ensureCommentRemoval(config: CommentsConfig, prNo: number, topic: string): Promise; export {};