export type LogLevel = 'verbose' | 'debug' | 'info' | 'warn' | 'error' | 'fatal' | 'none';
declare const config: {
    GOOGLE_API_KEY: string;
    PORT: number;
    STORAGE_DIR: string;
    LOG_LEVEL: "verbose" | "debug" | "info" | "warn" | "error" | "fatal" | "none";
    USE_S3: boolean;
    S3_ENDPOINT?: string | undefined;
    S3_REGION?: string | undefined;
    S3_BUCKET?: string | undefined;
    S3_ACCESS_KEY?: string | undefined;
    S3_SECRET_KEY?: string | undefined;
};
export default config;
