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: (props: TableHandleProps & {
    children?: ReactNode;
}) => import("react/jsx-runtime").JSX.Element | null;
