scrivly
Version:
A powerful, feature-rich rich text editor for React with TypeScript support
9 lines • 299 B
TypeScript
import type React from "react";
import type { TableData } from "../types/editor";
interface TableModalProps {
onCreateTable: (tableData: TableData) => void;
onClose: () => void;
}
export declare const TableModal: React.FC<TableModalProps>;
export {};
//# sourceMappingURL=TableModal.d.ts.map