import { FlexStorage, Row } from "../../types.js"; export declare class RowStorage { #private; constructor(storage: FlexStorage); save(key: string, rows: Row[]): Promise; load(key: string): Promise; }