import type { Resource } from "@frictionless-ts/metadata"; import type { LoadTableOptions, SaveTableOptions, TablePlugin } from "../../plugin.ts"; import type { Table } from "../../table/index.ts"; export declare class ArrowPlugin implements TablePlugin { loadTable(resource: Partial, options?: LoadTableOptions): Promise | undefined>; saveTable(table: Table, options: SaveTableOptions): Promise; }