import React from "react";
interface CsvLinkProps {
    data: any[];
    fileName: string;
    withTimeStamp?: boolean;
    skipHeader?: boolean;
    skipEmptyLines?: boolean;
    onClick?: () => void;
}
declare const CsvLink: React.FC<CsvLinkProps>;
export default CsvLink;
