import { Entity, Table } from "@webiny/db-dynamodb/toolbox";
import { FormBuilderSystemStorageOperations } from "../../types";
export interface CreateSystemStorageOperationsParams {
    entity: Entity<any>;
    table: Table<string, string, string>;
}
export declare const createSystemStorageOperations: (params: CreateSystemStorageOperationsParams) => FormBuilderSystemStorageOperations;
