export interface SharedCLIArgs { dangerfile?: string; id: string; textOnly: boolean; failOnErrors: boolean; verbose: boolean; noPublishCheck: boolean; newComment: boolean; removePreviousComments: boolean; baseUrl?: string; } /** Shared CLI argument definitions for danger ci and danger pr */ export declare const sharedOptions: { dangerfile: { type: "string"; short: string; }; id: { type: "string"; }; "text-only": { type: "boolean"; short: string; }; "fail-on-errors": { type: "boolean"; }; verbose: { type: "boolean"; short: string; }; "no-publish-check": { type: "boolean"; }; "new-comment": { type: "boolean"; }; "remove-previous-comments": { type: "boolean"; }; "base-url": { type: "string"; }; help: { type: "boolean"; short: string; }; }; export declare function parseSharedArgs(argv: string[]): SharedCLIArgs & { help: boolean; positionals: string[]; }; //# sourceMappingURL=parse-args.d.ts.map