import { Tuple, Stream } from ".."; interface NativeHandler { setObjectColumn: (column: string) => void; setViewColumn: (column: string) => void; } export default class API { handler: NativeHandler; constructor(handler: NativeHandler); runSearch(pattern: Tuple, output: Stream): Promise; runSave(pattern: Tuple, output: Stream): Promise; runDelete(pattern: Tuple, output: Stream): Promise; } export {};