import { Auto, IPlugin } from '@intuit-auto/core'; interface IReleasedLabelPluginOptions { message: string; label: string; lockIssues: boolean; } export default class ReleasedLabelPlugin implements IPlugin { name: string; readonly options: IReleasedLabelPluginOptions; constructor(options?: Partial); apply(auto: Auto): void; private addReleased; private addCommentAndLabel; private createReleasedComment; } export {};