import { Table, IColumns } from "../table"; import { ISerializer } from "./base"; import { JSONValue } from "../types"; export declare class TableSerializer implements ISerializer> { private readonly _columns; constructor(columns: T); toJSON(value: Table): JSONValue; fromJSON(value: JSONValue): Table; }