/** * PromptTable Component * * Table component for displaying prompts with selection, edit, and delete actions. */ import type { PromptTableProps } from './types.js'; /** * PromptTable component for displaying and managing prompts */ export declare function PromptTable({ prompts, loading, selected_ids, on_select, on_select_all, on_edit, on_duplicate, on_delete, columns, features, empty_message, }: PromptTableProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=prompt_table.d.ts.map