import type { LocaleEntry } from './definitions';
/**
 * The possible definitions related to databases.
 */
export declare type DatabaseDefinitions = LocaleEntry<{
    /**
     * Database engines.
     */
    engine: string[];
    /**
     * Database collations.
     */
    collation: string[];
    /**
     * Column names.
     */
    column: string[];
    /**
     * Column types.
     */
    type: string[];
}>;
