import { IZDatabaseOptions } from './database-options.interface'; export declare class ZDatabaseOptionsBuilder { private _options; constructor(); database(val: string): this; url(val: string): this; timeout(val: number): this; assign(other: Partial): this; copy(other: IZDatabaseOptions): this; build(): IZDatabaseOptions; }