import { Context } from "../context";
import { Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
export declare function toValue(value: any): any;
export interface IInsertDatabaseOptions {
    values?: Structure;
    table?: Table;
    connection?: string;
}
export declare function insertDatabase(table: string | ICharacter, options: IInsertDatabaseOptions, context: Context): Promise<number | undefined>;
