import React from "react"; interface Props { handleExportToExcel: () => void; disabled?: boolean; } export declare const ExcelButton: ({ handleExportToExcel, disabled }: Props) => React.JSX.Element; export {};