export declare const NPM_TOKEN: {
    token: string;
} | {
    token?: undefined;
};
export declare const SNYK_ORG: string | undefined;
export declare const SNYK_TOKEN: string | undefined;
export declare const VULN_MODE: Readonly<{
    GITHUB_ADVISORY: "github-advisory";
    SNYK: "snyk";
    SONATYPE: "sonatype";
    NONE: "none";
}>;
export type Kind = typeof VULN_MODE[keyof typeof VULN_MODE];
