import type { Argv } from 'yargs'; export declare const command = "pull-request-analyzing [away]"; export declare const describe = "Will analyze the pull requests in the repository, and get stats for completions, comments, reviews, and more."; export declare const aliases: string[]; export interface IDevOpsOptions { format: 'json' | 'text'; away?: string; key?: string; operation: 'closed-prs' | 'open-prs'; } export declare const handler: (argv: IDevOpsOptions) => Promise; export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ key: { description: string; type: "string"; }; }>>;