export type Flags = {
    concurrency?: number;
    config?: string;
    recurse?: boolean;
    skip?: string | string[];
    format?: string;
    silent?: boolean;
    verbosity?: string;
    timeout?: number;
    markdown?: boolean;
    serverRoot?: string;
    directoryListing?: boolean;
    retry?: boolean;
    retryErrors?: boolean;
    retryErrorsCount?: number;
    retryErrorsJitter?: number;
    urlRewriteSearch?: string;
    urlRewriteReplace?: string;
};
export declare function getConfig(flags: Flags): Promise<Flags>;
