declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
// Add your environment variables here
SLACK_CLIENT_ID: string;
SLACK_CLIENT_SECRET: string;
SLACK_SIGNING_SECRET: string;
}
export {};