import type { Faker } from '.'; export declare class Database { private readonly faker; constructor(faker: Faker); /** * column * * @method faker.database.column */ column(): string; /** * type * * @method faker.database.type */ type(): string; /** * collation * * @method faker.database.collation */ collation(): string; /** * engine * * @method faker.database.engine */ engine(): string; }