import { File } from "instill-sdk"; type FileTableProps = { files: File[]; sortConfig: { key: keyof File | ""; direction: "ascending" | "descending" | ""; }; requestSort: (key: keyof File) => void; handleDelete: (fileId: string) => void; handleFileClick: (file: File) => void; }; export declare const FileTable: ({ files, sortConfig, requestSort, handleDelete, handleFileClick, }: FileTableProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FileTable.d.ts.map