ui-dev-content/dist/components/EditableHighlight.d.ts
autocommit 8b284e01b9 chore: initial package split from monorepo
Package: @lilith/ui-dev-content
Split from: lilith/ui.git or lilith/build.git
Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
2026-04-20 01:11:45 -07:00

18 lines
No EOL
713 B
TypeScript

/**
* EditableHighlight - Single editable content highlight
*
* Renders a dashed border overlay for one editable element.
* Supports both manual text editing and AI-powered transformers.
*/
import type { ContentHandle } from '../core/interfaces';
export interface EditableHighlightProps {
handle: ContentHandle;
isHovered: boolean;
}
/**
* Renders a highlight overlay for a single editable element.
* Uses pointer-events: none to allow clicks to pass through,
* with only the Edit button receiving pointer events.
*/
export declare function EditableHighlight({ handle, isHovered, }: EditableHighlightProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=EditableHighlight.d.ts.map