type Config = {
    githubToken?: string;
    npmToken?: string;
};
declare const getConfig: () => Promise<Config>;
export default getConfig;
