import { jsonValuesTypes } from '../../types/json.types'; export declare class ConfigTemplate { static readonly fields: { name: string; required: boolean; type: jsonValuesTypes; message: string; default?: string; }[]; } export interface ConfigInterface { [key: string]: jsonValuesTypes; host: string; apiVersion: string; }