import { DigConfig } from '../interfaces/dig-config'; export declare class ConfigModel implements DigConfig { readonly id: string; readonly status?: null | 'new' | 'plan' | 'dev' | 'test' | 'live'; readonly dbRoot?: string; readonly storageRoot?: string; readonly title?: string; readonly description?: string; readonly icon?: string; constructor(id: string, status?: null | 'new' | 'plan' | 'dev' | 'test' | 'live', dbRoot?: string, storageRoot?: string, title?: string, description?: string, icon?: string); } export declare function configFactory(data: any): ConfigModel;