import type { Placement } from '@floating-ui/dom'; import type { Snippet } from 'svelte'; type Props = { popoverPosition?: Placement; children: Snippet; }; /** * Actions cell for table rows. Shows a popover trigger with a "more" icon. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--table-actions-cell--trigger--border-color` | Trigger button border color | `--sc-kit--color--accent--soft` | * | `--sc-kit--table-actions-cell--trigger--icon-color` | Trigger icon color | `--sc-kit--color--accent` | */ declare const TableActionsCell: import("svelte").Component; type TableActionsCell = ReturnType; export default TableActionsCell;