import { Service } from "./utils/dependency-injector/service"; export * from "./arguments"; export declare class MainAction extends Service { private sloppy; private trace; private version; private includePrDescription; private prTitleMatcher; private dateFormat; private validLabels; private outputFile; private onlySince; private groupByLabels; private groupByMatchers; private outputToStdout; private noOutput; private excludePrs; private excludePatterns; private githubClient; private configLoader; private envvarReader; private runner; private isSpawnedFromCli; /** * Set whether the action is spawned from the CLI or not. When this * is set to true, program will be terminated if an error occurs. * * If you are using this action from a node script, avoid this function. * * @default false * @internal */ setIsSpawnedFromCli(v: boolean): this; run(): Promise; }