import { ConfigUpdateable, UpdateConfigOption } from "../types"; export declare class BaseConfig { address: string; alias: string; version: number; deployedAt: number; constructor(props: any & BaseConfig); update(updates: Partial>, option: UpdateConfigOption): void; }