/** * Bug Bounty — Public API * Automated vulnerability submission & payout tracking. * import { bugBounty } from 'anvilwing/tools'; */ import { type BugBountyOptions, type BugBountyResult, type BountySubmission, type BountyStats } from '../../core/bugBounty.js'; export declare const bugBounty: { submit: (opts: BugBountyOptions) => BugBountyResult; stats: (submissions: BountySubmission[]) => BountyStats; hackerone: (sub: BountySubmission) => { title: string; body: string; }; bugcrowd: (sub: BountySubmission) => { title: string; body: string; priority: string; }; direct: (sub: BountySubmission) => { subject: string; body: string; to: string; }; }; export type { BugBountyOptions, BugBountyResult, BountySubmission, BountyStats }; //# sourceMappingURL=bugBounty.d.ts.map