declare type Method = "GET" | "POST"; declare type Headers = { [k: string]: string; }; export interface Options { url: string; method?: Method; headers?: Headers; file?: string; } export declare const curl: (options: Options, sep?: string) => string; export {};