import * as React from "react"; import { type ButtonProps } from "@/components/ui/button"; export type TableImportButtonProps = Omit & { accept?: string; multiple?: boolean; label?: React.ReactNode; inputName?: string; onFilesSelect?: (files: File[]) => void; onFileSelect?: (file: File) => void; }; declare function TableImportButton({ accept, multiple, label, inputName, onFilesSelect, onFileSelect, disabled, children, ...props }: TableImportButtonProps): React.JSX.Element; export { TableImportButton };