ui-dev-content/dist/components/TextEditorModal.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

17 lines
No EOL
620 B
TypeScript

/**
* TextEditorModal - Simple text editing modal for manual content editing
*
* Provides a textarea for directly editing content without AI transformers.
*/
import type { ContentHandle } from '../core/interfaces';
export interface TextEditorModalProps {
isOpen: boolean;
onClose: () => void;
handle: ContentHandle;
onSave: (content: string) => Promise<void>;
}
/**
* Modal for manually editing text content
*/
export declare function TextEditorModal({ isOpen, onClose, handle, onSave, }: TextEditorModalProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=TextEditorModal.d.ts.map