import { InlineContentSchema, StyleSchema } from "@blocknote/core"; import { ReactNode } from "react"; import { TableHandleProps } from "./TableHandleProps.js"; /** * By default, the TableHandle component will render with the default icon. * However, you can override the icon to render by passing children. */ export declare const TableHandle: , S extends StyleSchema = import("@blocknote/core").StyleSchemaFromSpecs<{ bold: { config: { type: string; propSchema: "boolean"; }; implementation: import("@blocknote/core").StyleImplementation; }; italic: { config: { type: string; propSchema: "boolean"; }; implementation: import("@blocknote/core").StyleImplementation; }; underline: { config: { type: string; propSchema: "boolean"; }; implementation: import("@blocknote/core").StyleImplementation; }; strike: { config: { type: string; propSchema: "boolean"; }; implementation: import("@blocknote/core").StyleImplementation; }; code: { config: { type: string; propSchema: "boolean"; }; implementation: import("@blocknote/core").StyleImplementation; }; textColor: { config: { type: string; propSchema: "string"; }; implementation: import("@blocknote/core").StyleImplementation; }; backgroundColor: { config: { type: string; propSchema: "string"; }; implementation: import("@blocknote/core").StyleImplementation; }; }>>(props: TableHandleProps & { children?: ReactNode; }) => import("react/jsx-runtime").JSX.Element;