import { Context } from "../context";
import { FieldSymbol, Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
export interface IUpdateDatabaseOptions {
    from?: Structure | FieldSymbol;
    table?: Table | FieldSymbol;
    set?: string[];
    where?: string;
}
export declare function updateDatabase(table: string | ICharacter, options: IUpdateDatabaseOptions, context: Context): Promise<number>;
