<?php
namespace Maatwebsite\Excel;
interface Exporter
{
public function download($export, string $fileName, string $writerType = null, array $headers = []);
public function store($export, string $filePath, string $disk = null, string $writerType = null, $diskOptions = []);
public function queue($export, string $filePath, string $disk = null, string $writerType = null, $diskOptions = []);