import { Context } from "../context"; import { FieldSymbol, Structure, Table } from "../types"; import { ICharacter } from "../types/_character"; export interface IDeleteDatabaseOptions { from?: Structure | FieldSymbol; where?: string; table?: Table | FieldSymbol; } export declare function deleteDatabase(table: string | ICharacter, options: IDeleteDatabaseOptions, context: Context): Promise;