export interface IOptions {
    method?: 'GET' | 'POST' | 'PUT' | 'DELETE';
    headers?: Record<string, string>;
    body?: string;
}
export declare function download(url: string, filename?: string, options?: IOptions): Promise<void>;
export default download;
