import { IConfigData } from '../IConfigData'; import { ConfigJar } from '../ConfigJar'; import { IConfigOptions } from '../IConfigOptions'; import { ConfigSupport } from '../ConfigSupport'; /** * Load passthrough arguments configuration * * Named arguments beginning with '--' will be stripped of '--' and put as key-value pair in the array. * If no value is set then the value will be 'true'. */ export declare class SystemConfig extends ConfigSupport { constructor(options?: IConfigOptions, jarsData?: IConfigData[]); type(): string; private attach_os; private attach_env; private attach_argv; create(): ConfigJar; }