export declare const optionsConfig: { readonly lurkers: { readonly type: "string"; readonly short: "l"; }; readonly authors: { readonly type: "string"; readonly short: "a"; }; readonly padcount: { readonly type: "string"; readonly short: "p"; }; readonly duration: { readonly type: "string"; readonly short: "d"; }; }; export interface ParsedOptions { lurkers?: number; authors?: number; padcount?: number; duration?: number; } export declare const parseOptions: (argv?: string[]) => { options: ParsedOptions; positionals: string[]; }; //# sourceMappingURL=argopts.d.ts.map