import { DataTable } from '@sqlrooms/duckdb'; import React, { FC } from 'react'; export type TableAction = { icon: React.FC<{ className: string; }>; label: string; onClick: (tableName: string) => void; }; declare const TableCard: FC<{ isReadOnly?: boolean; value?: DataTable; rowCount?: number; onReset?: () => void; onClick?: () => void; className?: string; menuRenderer?: (v: DataTable) => React.ReactNode; }>; export { TableCard }; //# sourceMappingURL=TableCard.d.ts.map