declare const options: { readonly config: { readonly short: "c"; readonly type: "string"; }; readonly "what-if": { readonly type: "boolean"; readonly short: "w"; }; readonly force: { readonly short: "x"; readonly type: "boolean"; }; readonly organization: { readonly short: "o"; readonly type: "string"; }; readonly project: { readonly short: "p"; readonly type: "string"; }; readonly feed: { readonly short: "f"; readonly type: "string"; }; readonly registry: { readonly short: "r"; readonly type: "string"; }; readonly email: { readonly short: "e"; readonly type: "string"; }; readonly daysToExpiry: { readonly short: "d"; readonly type: "string"; }; readonly pat: { readonly short: "t"; readonly type: "string"; }; readonly help: { readonly short: "h"; readonly type: "boolean"; }; readonly version: { readonly short: "v"; readonly type: "boolean"; }; }; interface DocOption { description: string; docsSection: "core" | "optional"; multiple?: boolean; short: string; type: string; } type ValidOption = keyof typeof options; declare const allArgOptions: Record; export { type DocOption, type ValidOption, allArgOptions, options };