export declare class ConnectionStringModel { /** * Connection key name */ Key: string; /** * Connection value */ Value: string; constructor(key: string, value: string); }