import type { TableHandlePopoverItemElement, TableHandlePopoverItemProps as Props, TableHandlePopoverItemEvents as Events } from '@prosekit/web/table-handle';
import type { SvelteComponent } from 'svelte';
import type { HTMLAttributes } from 'svelte/elements';
import type { CreateProps } from '../create-props';
/**
 * Props for the {@link TableHandlePopoverItem} component.
 */
export interface TableHandlePopoverItemProps extends Partial<CreateProps<Props, Events>> {
}
export declare const TableHandlePopoverItem: typeof SvelteComponent<TableHandlePopoverItemProps & HTMLAttributes<TableHandlePopoverItemElement>>;
