import { DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, StyleSchema } from "@blocknote/core";
import { ReactNode } from "react";
import { TableCellButtonProps } from "./TableCellButtonProps.js";
/**
 * By default, the TableCellHandle component will render with the default icon.
 * However, you can override the icon to render by passing children.
 */
export declare const TableCellButton: <I extends InlineContentSchema = DefaultInlineContentSchema, S extends StyleSchema = DefaultStyleSchema>(props: TableCellButtonProps<I, S> & {
    children?: ReactNode;
}) => import("react/jsx-runtime").JSX.Element | null;
