/// <reference types="node" />
import * as https from 'https';
export interface S3 {
    Bucket: string;
    UseMetaMtime: boolean;
    Concurrent: number;
}
export interface AWSConfig {
    accessKeyId: string;
    secretAccessKey: string;
    endpoint: string;
    sslEnabled: boolean;
    s3ForcePathStyle: boolean;
}
export interface Config {
    version: string;
    basepath: string;
    port: number;
    https?: https.ServerOptions;
    s3: S3;
    aws: AWSConfig;
    aws_module: string;
}
export default function parseConfig(argv: string[]): Config;
