import React from "react"; import { CSSProperties } from "react"; interface Iprops { data: { [key: string]: [][]; }; fileName?: string; buttonName?: string; style?: CSSProperties; } export default function ExportDataToXlsx(props: Iprops): React.JSX.Element; export {};