import { Configurations } from './Configurations'; export declare class Conversionator { private readonly configurations; constructor(configurations: Configurations); string(name: string, someDefault?: string): Promise; boolean(name: string, someDefault?: boolean): Promise; number(name: string, someDefault?: number): Promise; object(name: string, someDefault?: object): Promise; }