import type { TransactionFilter } from "@olenbetong/appframe-updater"; import type { Server } from "../lib/Server.js"; export interface TransactionsEditorProps { server: Server; namespace: string | number; showErrorColumn?: boolean; filter?: TransactionFilter; } export declare function TransactionsEditor({ filter, server, namespace, showErrorColumn }: TransactionsEditorProps): import("react").JSX.Element; export declare function renderTransactionsEditor({ filter, ...props }: TransactionsEditorProps): Promise<{ instance: import("ink").Instance; start: () => Promise; waitUntilExit: () => Promise; }>;